Remove unnecessary logging

This commit is contained in:
Vishwas Shashidhar 2019-02-12 20:48:59 +05:30
parent 1f6017a1fa
commit 4943db6d13

View File

@ -79,7 +79,7 @@ function sanitize(windowName) {
*/
electron.ipcMain.on(apiName, (event, arg) => {
log.send(logLevels.INFO, `Processing event for API ${apiName} with arg ${JSON.stringify(arg)}`);
log.send(logLevels.INFO, `Processing event for API ${apiName}`);
if (!isValidWindow(event)) {
return;