about summary refs log tree commit diff stats
path: root/src/chat_log.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/chat_log.c')
-rw-r--r--src/chat_log.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/chat_log.c b/src/chat_log.c
index 60062f38..78689048 100644
--- a/src/chat_log.c
+++ b/src/chat_log.c
@@ -78,12 +78,12 @@ chat_log_chat(const gchar * const login, gchar *other,
     }
 
     GDateTime *dt = g_date_time_new_now(tz);
-    gchar *date_fmt = g_date_time_format(dt, "%d/%m/%Y %H:%M:%S");
+    gchar *date_fmt = g_date_time_format(dt, "%H:%M:%S");
 
     if (direction == IN) {
-        fprintf(logp, "%s: %s: %s\n", date_fmt, other, msg);
+        fprintf(logp, "%s - %s: %s\n", date_fmt, other, msg);
     } else {
-        fprintf(logp, "%s: %s: %s\n", date_fmt, login, msg);
+        fprintf(logp, "%s - me: %s\n", date_fmt, msg);
     }
     fflush(logp);