diff --git a/dynare++/kord/journal.cc b/dynare++/kord/journal.cc index b8eaabd473f5c3ad975b7af55391553e0996e029..c991b02e30c8534f2b61ec79757c1f394d460dfb 100644 --- a/dynare++/kord/journal.cc +++ b/dynare++/kord/journal.cc @@ -219,7 +219,8 @@ Journal::printHeader() *this << ", processors online: " << std::thread::hardware_concurrency() << "\n\nStart time: "; std::time_t t = std::time(nullptr); - *this << std::put_time(std::localtime(&t), "%c %Z") + // NB: in the date/time string, we avoid using locale-specific strings (#1751) + *this << std::put_time(std::localtime(&t), "%F %T %z") << "\n\n" << u8" ┌────╼ elapsed time (seconds) \n" << u8" │ ┌────╼ record unique identifier \n"