From 464e41a84348fa96949969c9ce0ef449fc80cbdb Mon Sep 17 00:00:00 2001 From: Seb Julliand Date: Tue, 23 Jul 2024 09:05:43 +0200 Subject: [PATCH] Log error instead of info Signed-off-by: Seb Julliand --- src/api/Instance.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/Instance.ts b/src/api/Instance.ts index 270af9954..0417d08cd 100644 --- a/src/api/Instance.ts +++ b/src/api/Instance.ts @@ -102,7 +102,7 @@ export default class Instance { console.timeEnd(identity); } catch (error) { - console.log(`${event} event function ${identity} failed`, error); + console.error(`${event} event function ${identity} failed`, error); } finally { if (callable.transient) {