From a2c636fdbfe240ab9feb025f53d905696aff312c Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Sat, 9 Feb 2019 17:44:23 +0100 Subject: [PATCH] console logging --- terminus-core/src/services/log.service.ts | 2 +- terminus-terminal/src/components/baseTerminalTab.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/terminus-core/src/services/log.service.ts b/terminus-core/src/services/log.service.ts index cfa1579e..866a2559 100644 --- a/terminus-core/src/services/log.service.ts +++ b/terminus-core/src/services/log.service.ts @@ -23,7 +23,7 @@ const initializeWinston = (electron: ElectronService) => { colorize: false }), new winston.transports.Console({ - level: 'info', + level: 'debug', handleExceptions: false, json: false, colorize: true diff --git a/terminus-terminal/src/components/baseTerminalTab.component.ts b/terminus-terminal/src/components/baseTerminalTab.component.ts index 01b1dd4d..6b957565 100644 --- a/terminus-terminal/src/components/baseTerminalTab.component.ts +++ b/terminus-terminal/src/components/baseTerminalTab.component.ts @@ -253,7 +253,7 @@ export class BaseTerminalTabComponent extends BaseTabComponent implements OnInit }), 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.zone.run(() => { if (this.session && this.session.open) {