From cd968ba9e8d00d6d414778d16e75ce7ad50d6a2b Mon Sep 17 00:00:00 2001 From: Oliver Blanthorn Date: Wed, 31 Oct 2018 14:06:09 +0000 Subject: [PATCH] Remove shrugface error It was funnier when it wasn't tormenting end users who hit bugs --- src/content/controller_content.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/content/controller_content.ts b/src/content/controller_content.ts index ca76c233..3a295c62 100644 --- a/src/content/controller_content.ts +++ b/src/content/controller_content.ts @@ -87,11 +87,7 @@ function* ParserController() { acceptExCmd(exstr) } catch (e) { // Rumsfeldian errors are caught here - logger.error( - "An error occurred in the content controller: ", - e, - " ¯\\_(ツ)_/¯", - ) + logger.error("An error occurred in the content controller: ", e) } } }