|
@@ -25,14 +25,9 @@
|
|
#if defined(DEBUG_ROCKER)
|
|
#if defined(DEBUG_ROCKER)
|
|
# define DPRINTF(fmt, ...) \
|
|
# define DPRINTF(fmt, ...) \
|
|
do { \
|
|
do { \
|
|
- struct timeval tv; \
|
|
|
|
- char timestr[64]; \
|
|
|
|
- time_t now; \
|
|
|
|
- gettimeofday(&tv, NULL); \
|
|
|
|
- now = tv.tv_sec; \
|
|
|
|
- strftime(timestr, sizeof(timestr), "%T", localtime(&now)); \
|
|
|
|
- fprintf(stderr, "%s.%06ld ", timestr, tv.tv_usec); \
|
|
|
|
- fprintf(stderr, "ROCKER: " fmt, ## __VA_ARGS__); \
|
|
|
|
|
|
+ g_autoptr(GDateTime) now = g_date_time_new_now_local(); \
|
|
|
|
+ g_autofree char *nowstr = g_date_time_format(now, "%T.%f");\
|
|
|
|
+ fprintf(stderr, "%s ROCKER: " fmt, nowstr, ## __VA_ARGS__);\
|
|
} while (0)
|
|
} while (0)
|
|
#else
|
|
#else
|
|
static inline GCC_FMT_ATTR(1, 2) int DPRINTF(const char *fmt, ...)
|
|
static inline GCC_FMT_ATTR(1, 2) int DPRINTF(const char *fmt, ...)
|