From 800c1fa0393ab750806d6f30e10f6ddccd3286a3 Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Tue, 6 Jul 2021 20:29:11 +0200 Subject: [PATCH] don't log cwd check failures as errors --- tabby-local/src/session.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tabby-local/src/session.ts b/tabby-local/src/session.ts index 344168ae..8b1c2d18 100644 --- a/tabby-local/src/session.ts +++ b/tabby-local/src/session.ts @@ -308,7 +308,7 @@ export class Session extends BaseSession { try { cwd = getWorkingDirectoryFromPID(this.truePID) } catch (exc) { - console.error(exc) + console.info('Could not read working directory:', exc) } try {