From 8d67bea14606b0bae3897b5c1af138ed414f1196 Mon Sep 17 00:00:00 2001 From: atef Date: Mon, 30 Oct 2023 16:27:15 +0100 Subject: [PATCH] Update the size of local csv file. --- csharp/App/SaliMax/src/Logger.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/App/SaliMax/src/Logger.cs b/csharp/App/SaliMax/src/Logger.cs index f0544095d..e18ceb2e8 100644 --- a/csharp/App/SaliMax/src/Logger.cs +++ b/csharp/App/SaliMax/src/Logger.cs @@ -6,7 +6,7 @@ public static class Logger { // Specify the maximum log file size in bytes (e.g., 1 MB) - private const Int32 MaxFileSizeBytes = 1024 * 21; // TODO: move to settings + private const Int32 MaxFileSizeBytes = 1024 * 30; // TODO: move to settings private const Int32 MaxLogFileCount = 5000; // TODO: move to settings private const String LogFilePath = "LogDirectory/log.csv"; // TODO: move to settings