[libvirt] [PATCH 2/2] logging: Add date to log timestamp

Jiri Denemark jdenemar at redhat.com
Wed Sep 28 14:46:12 UTC 2011


---
 src/util/logging.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/src/util/logging.c b/src/util/logging.c
index 4ffaf75..9df9003 100644
--- a/src/util/logging.c
+++ b/src/util/logging.c
@@ -627,8 +627,10 @@ virLogFormatTimestamp(void)
 
     gettimeofday(&cur_time, NULL);
     localtime_r(&cur_time.tv_sec, &time_info);
+    time_info.tm_year += 1900;
 
-    if (virAsprintf(&str, "%02d:%02d:%02d.%03d",
+    if (virAsprintf(&str, "%4d-%02d-%02d %02d:%02d:%02d.%03d",
+                    time_info.tm_year, time_info.tm_mon, time_info.tm_mday,
                     time_info.tm_hour, time_info.tm_min, time_info.tm_sec,
                     (int) (cur_time.tv_usec / 1000)) < 0)
         return NULL;
-- 
1.7.6.1




More information about the libvir-list mailing list