feat: set SHOW_DIE to false by default

This commit is contained in:
Viren070
2025-01-23 18:47:36 +00:00
parent 19e6d53e38
commit 44d2cd3a36
+1 -1
View File
@@ -114,7 +114,7 @@ export class Settings {
: 15000;
public static readonly SHOW_DIE = process.env.SHOW_DIE
? process.env.SHOW_DIE === 'true'
: true;
: false;
public static readonly LOG_SENSITIVE_INFO = process.env.LOG_SENSITIVE_INFO
? process.env.LOG_SENSITIVE_INFO === 'true'
: false;