console logging

This commit is contained in:
Eugene Pankov
2019-02-09 17:44:23 +01:00
parent 413ca70729
commit a2c636fdbf
2 changed files with 2 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ const initializeWinston = (electron: ElectronService) => {
colorize: false colorize: false
}), }),
new winston.transports.Console({ new winston.transports.Console({
level: 'info', level: 'debug',
handleExceptions: false, handleExceptions: false,
json: false, json: false,
colorize: true colorize: true

View File

@@ -253,7 +253,7 @@ export class BaseTerminalTabComponent extends BaseTabComponent implements OnInit
}), }),
this.frontend.resize$.subscribe(({ columns, rows }) => { this.frontend.resize$.subscribe(({ columns, rows }) => {
this.logger.info(`Resizing to ${columns}x${rows}`) this.logger.debug(`Resizing to ${columns}x${rows}`)
this.size = { columns, rows } this.size = { columns, rows }
this.zone.run(() => { this.zone.run(() => {
if (this.session && this.session.open) { if (this.session && this.session.open) {