From c6ec985f3a146efed0d928996f3698f3594a17f4 Mon Sep 17 00:00:00 2001 From: iOSonntag Date: Mon, 25 Dec 2023 11:04:29 +0100 Subject: [PATCH] fix: disable debug logging --- src/util/logger.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/util/logger.ts b/src/util/logger.ts index 3d56eec..287d46e 100644 --- a/src/util/logger.ts +++ b/src/util/logger.ts @@ -15,6 +15,7 @@ export class Log { */ static debug(message: string, ...args: any[]) { + return; if (Platform.isDesktopApp) { // in case it is unknown we assume production, even though it is not correct