log: first line should have printed timestamp

This commit is contained in:
Miodrag Milanovic
2026-08-20 15:29:43 +02:00
parent bd1c3942aa
commit 17c2846cda
+1 -1
View File
@@ -56,7 +56,7 @@ void (*log_verific_callback)(int msg_type, const char *message_id, const char* f
// TODO: remove when log_id is removed
vector<char*> log_id_cache;
static bool next_print_log = false;
static bool next_print_log = true;
FileLogSink::FileLogSink(const std::string &filename, bool line_buffered, bool append)
: file(fopen(filename.c_str(), append ? "at" : "wt"))