From 6c6d0bbce81a06c397127862ff94811b076c8049 Mon Sep 17 00:00:00 2001 From: radubrehar Date: Mon, 16 Sep 2024 14:41:29 +0300 Subject: [PATCH] fix debugpackage logging --- source/src/utils/debugPackage.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/src/utils/debugPackage.ts b/source/src/utils/debugPackage.ts index 336c571c..0001a3eb 100644 --- a/source/src/utils/debugPackage.ts +++ b/source/src/utils/debugPackage.ts @@ -340,7 +340,7 @@ function debugPackage(channelName: string): any { logFn(...theArgs); } else { - logFn(`%c[${channel}]`, `color: ${color}`, ...args); + logFn(`%c[${channel}]%c %s`, `color: ${color}`, '', ...args); } } },