aboutsummaryrefslogtreecommitdiff
path: root/src/util/common_logging.c
diff options
context:
space:
mode:
authorAlessio Vanni <vannilla@firemail.cc>2021-09-07 14:50:20 +0200
committerAlessio Vanni <vannilla@firemail.cc>2021-09-07 14:50:20 +0200
commit6e1bb6601e21a3329950129b9dc39e05746e3b65 (patch)
treedfc20058c8b430ef37c059ec21c2905168a07084 /src/util/common_logging.c
parent382fc8faaf4ccccd870dc7e746a9f002f3f6cfd1 (diff)
parent3da9cbd621a98c885a0c633ddaec0a84aa8a8e66 (diff)
downloadgnunet-6e1bb6601e21a3329950129b9dc39e05746e3b65.tar.gz
gnunet-6e1bb6601e21a3329950129b9dc39e05746e3b65.zip
-Merge branch 'master' into dev/vanni/build-info
Diffstat (limited to 'src/util/common_logging.c')
-rw-r--r--src/util/common_logging.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/util/common_logging.c b/src/util/common_logging.c
index 48cc6fe3b..cba37cd2f 100644
--- a/src/util/common_logging.c
+++ b/src/util/common_logging.c
@@ -1014,8 +1014,10 @@ mylog (enum GNUNET_ErrorType kind,
1014 } 1014 }
1015 else 1015 else
1016 { 1016 {
1017 if (0 == strftime (date2, DATE_STR_SIZE, "%b %d %H:%M:%S-%%06u", tmptr)) 1017 /* RFC 3339 timestamp, with snprintf placeholder for microseconds */
1018 if (0 == strftime (date2, DATE_STR_SIZE, "%Y-%m-%dT%H:%M:%S.%%06u%z", tmptr))
1018 abort (); 1019 abort ();
1020 /* Fill in microseconds */
1019 if (0 > snprintf (date, sizeof(date), date2, timeofday.tv_usec)) 1021 if (0 > snprintf (date, sizeof(date), date2, timeofday.tv_usec))
1020 abort (); 1022 abort ();
1021 } 1023 }