Remove extra logging statement

This commit is contained in:
Matt Bierner 2018-01-18 17:23:08 -08:00
parent b0a26a94c6
commit 47832c9039

View file

@ -422,7 +422,6 @@ function registerFileProtocol(
contents.session.protocol.registerFileProtocol(protocol, (request, callback: any) => {
const requestPath = URI.parse(request.url).path;
const normalizedPath = normalize(join(root, requestPath), true);
console.log(root, requestPath, normalizedPath);
if (startsWith(normalizedPath, root)) {
callback({ path: normalizedPath });
} else {