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) {