Shorten log line a bit by removing the year part of the date.

This commit is contained in:
Klaas Freitag 2012-12-06 11:34:26 +01:00
parent 40206e0eab
commit 588df3124c

View file

@ -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);
}