Skip to content
This repository has been archived by the owner on Sep 6, 2023. It is now read-only.

Commit

Permalink
Remove debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
jwheare committed Jan 13, 2021
1 parent dbef4de commit cb208ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -437,8 +437,8 @@ app.on('open-url', function (event, url) {
openUrl(url);
});

ipcMain.on('preload-channel-async', function (event, arg) {
switch (arg) {
ipcMain.on('preload-channel-async', function (event, key) {
switch (key) {
case 'activate':
openMainWindow();
break;
Expand Down
1 change: 0 additions & 1 deletion app/render/preload.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
ipcRenderer.send('set-user', result);
},
notificationClick: function () {
log.debug('preload notificationClick');
ipcRenderer.send('preload-channel-async', 'activate');
},
setPinned: function (result) {
Expand Down

0 comments on commit cb208ce

Please sign in to comment.