diff options
Diffstat (limited to 'src/nxt_log.h')
-rw-r--r-- | src/nxt_log.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nxt_log.h b/src/nxt_log.h index e1b69442..74260576 100644 --- a/src/nxt_log.h +++ b/src/nxt_log.h @@ -122,7 +122,8 @@ nxt_log_debug(_log, ...) \ } while (0) -#define nxt_debug_alloc(...) +#define nxt_debug_alloc(_fmt, ARGS...) \ + nxt_thread_log_debug("%08p: " _fmt, mp, ##ARGS) #else |