logger: start session & log index at 100

To avoid leading zeros, as the events interface does not support that (yet)
This commit is contained in:
Beat Küng
2021-09-09 22:06:01 +02:00
committed by Daniel Agar
parent b31276a4f5
commit 38eca0c64b
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1290,7 +1290,7 @@ int Logger::get_log_file_name(LogType type, char *file_name, size_t file_name_si
return -1;
}
uint16_t file_number = 1; // start with file log001
uint16_t file_number = 100; // start with file log100
/* look for the next file that does not exist */
while (file_number <= MAX_NO_LOGFILE) {