From 8920cc7924fcd3dc719d47a7ed9050321f346977 Mon Sep 17 00:00:00 2001 From: Austin Warren Date: Wed, 17 Jul 2019 20:56:39 -0700 Subject: [PATCH] remove console log --- terminus-terminal/src/frontends/xtermFrontend.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/terminus-terminal/src/frontends/xtermFrontend.ts b/terminus-terminal/src/frontends/xtermFrontend.ts index 02cba016..b6e3fdd3 100644 --- a/terminus-terminal/src/frontends/xtermFrontend.ts +++ b/terminus-terminal/src/frontends/xtermFrontend.ts @@ -97,7 +97,6 @@ export class XTermFrontend extends Frontend { let cols = Math.floor(l / actualCellWidth) let rows = Math.floor(i / actualCellHeight); - console.log("resizing to: ", cols, rows); this.xterm.resize(cols, rows); } } catch (e) {