aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-01-09 12:52:31 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-01-09 12:52:31 +0100
commitc70d210c3b0209557a1562321823be732b42df8c (patch)
treed282c033dfc10a0622482f77b868f546a76ba2a6 /src/index.js
parentRemove unnecessary stores injection (diff)
downloadferdium-app-c70d210c3b0209557a1562321823be732b42df8c.tar.gz
ferdium-app-c70d210c3b0209557a1562321823be732b42df8c.tar.zst
ferdium-app-c70d210c3b0209557a1562321823be732b42df8c.zip
replace console.log with debug
Diffstat (limited to 'src/index.js')
-rw-r--r--src/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.js b/src/index.js
index a4bc44a6c..367d32a15 100644
--- a/src/index.js
+++ b/src/index.js
@@ -254,7 +254,7 @@ app.on('login', (event, webContents, request, authInfo, callback) => {
254 callback(ps.user, ps.password); 254 callback(ps.user, ps.password);
255 }); 255 });
256 } else if (authInfo.scheme === 'basic') { 256 } else if (authInfo.scheme === 'basic') {
257 console.log('basic auth handler', authInfo); 257 debug('basic auth handler', authInfo);
258 basicAuthHandler(mainWindow, authInfo); 258 basicAuthHandler(mainWindow, authInfo);
259 } 259 }
260}); 260});