From 87f3b9ec00560cab3e6249273e1db3fe94dffebe Mon Sep 17 00:00:00 2001 From: benbierens Date: Fri, 5 May 2023 08:33:10 +0200 Subject: [PATCH] Turns off debug logging --- DistTestCore/Configuration.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DistTestCore/Configuration.cs b/DistTestCore/Configuration.cs index 2120404..ee01559 100644 --- a/DistTestCore/Configuration.cs +++ b/DistTestCore/Configuration.cs @@ -21,7 +21,7 @@ namespace DistTestCore public Logging.LogConfig GetLogConfig() { - return new Logging.LogConfig("CodexTestLogs", debugEnabled: true); + return new Logging.LogConfig("CodexTestLogs", debugEnabled: false); } public string GetFileManagerFolder()