More logging

This commit is contained in:
Mr. Stallion 2020-11-29 11:20:36 -06:00
parent 84db52346c
commit ed6ee7af4f
2 changed files with 7 additions and 1 deletions

View File

@ -369,6 +369,7 @@
this.defaultCharacter = data.default_character;
} catch(e) {
this.error = l('login.error');
log.error('connect.error', e);
if(process.env.NODE_ENV !== 'production') throw e;
} finally {
this.loggingIn = false;

View File

@ -280,6 +280,11 @@ function createWindow(): Electron.BrowserWindow | undefined {
log.debug('adblock.inject.style', { length: style.length, url });
});
}
).catch(
(err) => {
log.warn('adblock.init.error', 'Adblocker failed to initialize.'
+ 'This does not break F-Chat Rising, but may produce slower image previews', err);
}
);