Skip to content

Commit

Permalink
Merge branch '35-missing-leading-0-in-fractions-of-seconds' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
stephen-dixon committed Dec 16, 2024
2 parents 4a18275 + 3914c58 commit 84bad21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/logging/logging.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
strftime(uix_buf, 30, "%Y:%m:%dT%H:%M:%S", uix_tm);
# define uix_printtime() { \
UIX_DEFINETIME \
printf("%s.%dZ, ", uix_buf,(int32_t)uix_tmnow.tv_usec); \
printf("%s.%06dZ, ", uix_buf,(int32_t)uix_tmnow.tv_usec); \
}
# define UDA_LOG(LEVEL, FMT, ...) do{ if (LEVEL >= udaGetLogLevel()) {UIX_DEFINETIME udaLog(LEVEL, "%s.%dZ, %s:%d >> " FMT, uix_buf, (int32_t)uix_tmnow.tv_usec, basename((char *)__FILE__), __LINE__, ##__VA_ARGS__); }} while(0)
#endif
Expand Down

0 comments on commit 84bad21

Please sign in to comment.