server: flush stdout after logging in both text and json layout (#6253)

This commit is contained in:
Pierrick Hymbert 2024-03-23 13:18:45 +01:00 committed by GitHub
parent 50ccaf5eac
commit 1b26aebe4d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -95,8 +95,8 @@ static inline void server_log(const char *level, const char *function, int line,
const std::string str = ss.str();
printf("%.*s\n", (int)str.size(), str.data());
fflush(stdout);
}
fflush(stdout);
}
//