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
@@ -138,7 +138,7 @@ int check_free_space(const char *log_root_dir, int32_t max_log_dirs_to_keep, orb
// There are 2 directory naming schemes: sess<i> or <year>-<month>-<day>.
// For both we find the oldest and then remove the one which has more directories.
int year_min = 10000, month_min = 99, day_min = 99, sess_idx_min = 99999999, sess_idx_max = 0;
int year_min = 10000, month_min = 99, day_min = 99, sess_idx_min = 99999999, sess_idx_max = 99;
while ((result = readdir(dp))) {
int year, month, day, sess_idx;