Lines Matching refs:fmt
358 void nxt_unit_log(nxt_unit_ctx_t *ctx, int level, const char* fmt, ...)
362 const char* fmt, ...) NXT_ATTR_FORMAT;
366 #define nxt_unit_debug(ctx, fmt, ARGS...) \ argument
367 nxt_unit_log(ctx, NXT_UNIT_LOG_DEBUG, fmt, ##ARGS)
369 #define nxt_unit_req_debug(req, fmt, ARGS...) \ argument
370 nxt_unit_req_log(req, NXT_UNIT_LOG_DEBUG, fmt, ##ARGS)
374 #define nxt_unit_debug(ctx, fmt, ARGS...) argument
376 #define nxt_unit_req_debug(req, fmt, ARGS...) argument
381 #define nxt_unit_warn(ctx, fmt, ARGS...) \ argument
382 nxt_unit_log(ctx, NXT_UNIT_LOG_WARN, fmt, ##ARGS)
384 #define nxt_unit_req_warn(req, fmt, ARGS...) \ argument
385 nxt_unit_req_log(req, NXT_UNIT_LOG_WARN, fmt, ##ARGS)
387 #define nxt_unit_error(ctx, fmt, ARGS...) \ argument
388 nxt_unit_log(ctx, NXT_UNIT_LOG_ERR, fmt, ##ARGS)
390 #define nxt_unit_req_error(req, fmt, ARGS...) \ argument
391 nxt_unit_req_log(req, NXT_UNIT_LOG_ERR, fmt, ##ARGS)
393 #define nxt_unit_alert(ctx, fmt, ARGS...) \ argument
394 nxt_unit_log(ctx, NXT_UNIT_LOG_ALERT, fmt, ##ARGS)
396 #define nxt_unit_req_alert(req, fmt, ARGS...) \ argument
397 nxt_unit_req_log(req, NXT_UNIT_LOG_ALERT, fmt, ##ARGS)