From 588df3124cba97e0a1bd7581ea75530f26797aaf Mon Sep 17 00:00:00 2001 From: Klaas Freitag Date: Thu, 6 Dec 2012 11:34:26 +0100 Subject: [PATCH] Shorten log line a bit by removing the year part of the date. --- src/csync_log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/csync_log.c b/src/csync_log.c index 061f267bd..c780e9261 100644 --- a/src/csync_log.c +++ b/src/csync_log.c @@ -68,7 +68,7 @@ static void csync_log_stderr(int verbosity, rc = current_timestring(1, date, sizeof(date)); if (rc == 0) { - fprintf(stderr, "[%s, %d] %s:", date, verbosity, function); + fprintf(stderr, "[%s, %d] %s:", date+5, verbosity, function); } else { fprintf(stderr, "[%d] %s", verbosity, function); }