From cacaf7f9f24e5d9475c94804cfc7dd68fa479f65 Mon Sep 17 00:00:00 2001 From: Alexander Zinchuk Date: Fri, 11 Jun 2021 02:31:44 +0300 Subject: [PATCH] [Temp] Force logs --- src/config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/config.ts b/src/config.ts index b83426110..d4c8b3da0 100644 --- a/src/config.ts +++ b/src/config.ts @@ -5,7 +5,8 @@ export const APP_INFO = process.env.APP_INFO || 'Telegram T'; export const DEBUG = ( process.env.APP_ENV !== 'production' && process.env.APP_ENV !== 'perf' && process.env.APP_ENV !== 'test' -); +// Temporary +) || true; export const DEBUG_MORE = false; export const IS_TEST = process.env.APP_ENV === 'test';