about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--src/log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/log.c b/src/log.c
index 752d5b65..296f20b5 100644
--- a/src/log.c
+++ b/src/log.c
@@ -196,7 +196,7 @@ log_msg(log_level_t level, const char* const area, const char* const msg)
 
         char* level_str = _log_string_from_level(level);
 
-        gchar* date_fmt = g_date_time_format(dt, "%d/%m/%Y %H:%M:%S");
+        gchar* date_fmt = g_date_time_format_iso8601(dt);
 
         fprintf(logp, "%s: %s: %s: %s\n", date_fmt, area, level_str, msg);
         g_date_time_unref(dt);