diff --git a/chat/WebSocket.ts b/chat/WebSocket.ts index 7194779..7b5d116 100644 --- a/chat/WebSocket.ts +++ b/chat/WebSocket.ts @@ -30,7 +30,7 @@ export default class Socket implements WebSocketConnection { this.socket.addEventListener('open', handler); } - onClose(handler: () => void): void { + onClose(handler: (e: CloseEvent) => void): void { this.socket.addEventListener('close', handler); } @@ -41,4 +41,4 @@ export default class Socket implements WebSocketConnection { send(message: string): void { this.socket.send(message); } -} \ No newline at end of file +} diff --git a/electron/main.ts b/electron/main.ts index 4b36984..d677846 100644 --- a/electron/main.ts +++ b/electron/main.ts @@ -296,10 +296,12 @@ function showPatchNotes(): void { function onReady(): void { - log.transports.file.level = 'debug'; - log.transports.console.level = 'debug'; + const logLevel = (process.env.NODE_ENV === 'production') ? 'info' : 'silly'; + + log.transports.file.level = logLevel; + log.transports.console.level = logLevel; log.transports.file.maxSize = 5 * 1024 * 1024; - log.transports.file.file = path.join(baseDir, 'log.txt'); + log.info('Starting application.'); app.setAppUserModelId('com.squirrel.fchat.F-Chat'); diff --git a/electron/window.ts b/electron/window.ts index b28ab87..ada88ea 100644 --- a/electron/window.ts +++ b/electron/window.ts @@ -1,11 +1,20 @@ import * as qs from 'querystring'; +import log from 'electron-log'; //tslint:disable-line:match-default-export-name + import {GeneralSettings} from './common'; import Window from './Window.vue'; +const logLevel = (process.env.NODE_ENV === 'production') ? 'info' : 'silly'; + +log.transports.file.level = logLevel; +log.transports.console.level = logLevel; +log.transports.file.maxSize = 5 * 1024 * 1024; + + const params = <{[key: string]: string | undefined}>qs.parse(window.location.search.substr(1)); const settings = JSON.parse(params['settings']!); //tslint:disable-next-line:no-unused-expression new Window({ el: '#app', data: {settings} -}); \ No newline at end of file +}); diff --git a/fchat/connection.ts b/fchat/connection.ts index 1378a99..8da2f47 100644 --- a/fchat/connection.ts +++ b/fchat/connection.ts @@ -94,7 +94,14 @@ export default class Connection implements Interfaces.Connection { const data = msg.length > 6 ? JSON.parse(msg.substr(4)) : undefined; return this.handleMessage(type, data); }); - this.socket.onClose(async() => { + this.socket.onClose(async(event: CloseEvent) => { + log.debug( + 'socket.onclose', + { + event + } + ); + if(this.pinTimeout) clearTimeout(this.pinTimeout); if(!this.cleanClose) this.reconnect(); this.socket = undefined; diff --git a/fchat/interfaces.ts b/fchat/interfaces.ts index 64544ef..5819f4d 100644 --- a/fchat/interfaces.ts +++ b/fchat/interfaces.ts @@ -245,8 +245,8 @@ export interface WebSocketConnection { close(): void onMessage(handler: (message: string) => Promise): void onOpen(handler: () => void): void - onClose(handler: () => void): void + onClose(handler: (e: CloseEvent) => void): void onError(handler: (error: Error) => void): void send(message: string): void readyState: WebSocketConnection.ReadyState -} \ No newline at end of file +}