use ISO-8601 format for date part in log message timestamp

This commit is contained in:
Hartmut Holzgraefe 2014-09-05 16:51:38 +02:00
parent 85c88dbd6b
commit ee63b042b7

View File

@ -28,7 +28,7 @@
#include "skygw_types.h"
#include "skygw_utils.h"
const char* timestamp_formatstr = "%04d %02d/%02d %02d:%02d:%02d ";
const char* timestamp_formatstr = "%04d-%02d-%02d %02d:%02d:%02d ";
/** One for terminating '\0' */
const int timestamp_len = 4+1 +2+1 +2+1 +2+1 +2+1 +2+3 +1;