Add seconds to the output of log messages
This commit is contained in:
parent
91ad9b0473
commit
610ca2d46d
4
log.cpp
4
log.cpp
@ -115,11 +115,11 @@ util::detail::log (level_t level, boost::format &&format) {
|
|||||||
|
|
||||||
static const boost::format LEVEL_FORMAT ("%s [%s] ");
|
static const boost::format LEVEL_FORMAT ("%s [%s] ");
|
||||||
|
|
||||||
char time_string[strlen("YYYY-mm-dd HHMMh") + 1];
|
char time_string[strlen("YYYY-mm-dd HHMMhSS") + 1];
|
||||||
time_t unix_time = time (nullptr);
|
time_t unix_time = time (nullptr);
|
||||||
if (0 == strftime (time_string,
|
if (0 == strftime (time_string,
|
||||||
elems (time_string),
|
elems (time_string),
|
||||||
"%Y-%m-%d %H%Mh",
|
"%Y-%m-%d %H%Mh%S",
|
||||||
localtime (&unix_time))) {
|
localtime (&unix_time))) {
|
||||||
unusual ();
|
unusual ();
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user