From cd7a6156b1a7d4c1c15e515f71f383f39b29815c Mon Sep 17 00:00:00 2001 From: Marcin Maciaszczyk Date: Thu, 28 May 2020 16:06:03 +0200 Subject: [PATCH] Print YAML errors in the console (#5200) --- src/app/frontend/error/handler.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/frontend/error/handler.ts b/src/app/frontend/error/handler.ts index 8520f8211..3e2b179f8 100644 --- a/src/app/frontend/error/handler.ts +++ b/src/app/frontend/error/handler.ts @@ -40,6 +40,7 @@ export class GlobalErrorHandler implements ErrorHandler { } if (error instanceof YAMLException) { + console.error(error); return; } -- GitLab