From 9b72e4d761454723622012d30807e812a27a86e1 Mon Sep 17 00:00:00 2001 From: Oliver Blanthorn Date: Fri, 18 May 2018 14:09:12 +0100 Subject: [PATCH] Fix #536 --- src/controller.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/controller.ts b/src/controller.ts index 7226ce32..4f054c2f 100644 --- a/src/controller.ts +++ b/src/controller.ts @@ -83,7 +83,11 @@ function* ParserController() { acceptExCmd(exstr) } catch (e) { // Rumsfeldian errors are caught here - logger.error("An error occurred in the controller: ", e) + logger.error( + "An error occurred in the controller: ", + e, + " ¯\\_(ツ)_/¯", + ) } } }