2002-08-07 00:39:45 +08:00
|
|
|
#ifndef _NGX_LOG_H_INCLUDED_
|
|
|
|
#define _NGX_LOG_H_INCLUDED_
|
|
|
|
|
|
|
|
|
2003-06-03 23:42:58 +08:00
|
|
|
#include <ngx_config.h>
|
|
|
|
#include <ngx_core.h>
|
|
|
|
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2003-12-01 04:03:18 +08:00
|
|
|
#define NGX_LOG_STDERR 0
|
|
|
|
#define NGX_LOG_EMERG 1
|
|
|
|
#define NGX_LOG_ALERT 2
|
|
|
|
#define NGX_LOG_CRIT 3
|
|
|
|
#define NGX_LOG_ERR 4
|
|
|
|
#define NGX_LOG_WARN 5
|
|
|
|
#define NGX_LOG_NOTICE 6
|
|
|
|
#define NGX_LOG_INFO 7
|
|
|
|
#define NGX_LOG_DEBUG 8
|
|
|
|
|
2003-12-09 04:48:12 +08:00
|
|
|
#define NGX_LOG_DEBUG_ALLOC 0x10
|
|
|
|
#define NGX_LOG_DEBUG_EVENT 0x20
|
|
|
|
#define NGX_LOG_DEBUG_HTTP 0x40
|
|
|
|
|
|
|
|
#define NGX_LOG_DEBUG_FIRST NGX_LOG_DEBUG
|
|
|
|
#define NGX_LOG_DEBUG_LAST NGX_LOG_DEBUG_HTTP
|
|
|
|
#define NGX_LOG_DEBUG_ALL 0xfffffff8
|
2002-08-07 00:39:45 +08:00
|
|
|
|
2003-05-20 23:37:55 +08:00
|
|
|
|
2002-08-07 00:39:45 +08:00
|
|
|
/*
|
2002-08-20 22:48:28 +08:00
|
|
|
"[%time] [%level] %pid#%tid: %message:(%errno)%errstr, while %action"
|
2002-08-22 23:24:03 +08:00
|
|
|
" %peer and while processing %context"
|
2002-08-20 22:48:28 +08:00
|
|
|
|
2002-08-22 23:24:03 +08:00
|
|
|
----
|
2002-08-20 22:48:28 +08:00
|
|
|
message = "recv() failed";
|
|
|
|
errno = 32;
|
|
|
|
action = "reading request headers from client";
|
|
|
|
peer = "192.168.1.1";
|
|
|
|
context = "URL /"
|
|
|
|
|
2002-08-22 23:24:03 +08:00
|
|
|
"[2002/08/20 12:00:00] [error] 412#3: recv() failed (32: Broken pipe)"
|
2002-08-20 22:48:28 +08:00
|
|
|
" while reading request headers from client 192.168.1.1"
|
2002-08-22 23:24:03 +08:00
|
|
|
" and while processing URL /"
|
|
|
|
|
|
|
|
----
|
|
|
|
message = "recv() failed";
|
|
|
|
errno = 32;
|
|
|
|
ngx_http_proxy_error_context_t:
|
|
|
|
action = "reading headers from server %s for client %s and "
|
|
|
|
"while processing %s"
|
|
|
|
backend = "127.0.0.1";
|
|
|
|
peer = "192.168.1.1";
|
|
|
|
context = "URL /"
|
|
|
|
|
|
|
|
"[2002/08/20 12:00:00] [error] 412#3: recv() failed (32: Broken pipe)"
|
|
|
|
" while reading headers from backend 127.0.0.1"
|
|
|
|
" for client 192.168.1.1 and while processing URL /"
|
|
|
|
|
|
|
|
----
|
|
|
|
"[alert] 412#3: ngx_alloc: malloc() 102400 bytes failed (12: Cannot "
|
|
|
|
"allocate memory) while reading request headers from client 192.168.1.1"
|
|
|
|
" and while processing URL /"
|
2002-08-20 22:48:28 +08:00
|
|
|
|
|
|
|
|
|
|
|
OLD:
|
2002-08-07 00:39:45 +08:00
|
|
|
"... while ", action = "reading client request headers"
|
|
|
|
"... while reading client request headers"
|
|
|
|
"... while ", action = "reading client request headers"
|
|
|
|
context: pop3 user account
|
|
|
|
"... while reading client command for 'john_doe'"
|
|
|
|
*/
|
|
|
|
|
2003-05-20 23:37:55 +08:00
|
|
|
|
2003-10-27 16:53:49 +08:00
|
|
|
typedef size_t (*ngx_log_handler_pt) (void *ctx, char *buf, size_t len);
|
|
|
|
|
|
|
|
|
2003-11-20 00:26:41 +08:00
|
|
|
struct ngx_log_s {
|
2003-10-27 16:53:49 +08:00
|
|
|
int log_level;
|
|
|
|
ngx_open_file_t *file;
|
|
|
|
void *data;
|
|
|
|
ngx_log_handler_pt handler;
|
2003-11-20 00:26:41 +08:00
|
|
|
};
|
2002-08-07 00:39:45 +08:00
|
|
|
|
|
|
|
#define MAX_ERROR_STR 2048
|
|
|
|
|
|
|
|
#define _ ,
|
|
|
|
|
|
|
|
|
2003-12-01 04:03:18 +08:00
|
|
|
/*********************************/
|
|
|
|
|
2002-08-07 00:39:45 +08:00
|
|
|
#if (HAVE_GCC_VARIADIC_MACROS)
|
|
|
|
|
|
|
|
#define HAVE_VARIADIC_MACROS 1
|
|
|
|
|
|
|
|
#define ngx_log_error(level, log, args...) \
|
|
|
|
if (log->log_level >= level) ngx_log_error_core(level, log, args)
|
|
|
|
|
2002-08-22 23:24:03 +08:00
|
|
|
#if (NGX_DEBUG)
|
2002-08-07 00:39:45 +08:00
|
|
|
#define ngx_log_debug(log, args...) \
|
2003-12-01 04:03:18 +08:00
|
|
|
if (log->log_level & NGX_LOG_DEBUG) \
|
2002-08-07 00:39:45 +08:00
|
|
|
ngx_log_error_core(NGX_LOG_DEBUG, log, 0, args)
|
|
|
|
#else
|
|
|
|
#define ngx_log_debug(log, args...)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define ngx_assert(assert, fallback, log, args...) \
|
|
|
|
if (!(assert)) { \
|
|
|
|
if (log->log_level >= NGX_LOG_ALERT) \
|
|
|
|
ngx_log_error_core(NGX_LOG_ALERT, log, 0, args); \
|
|
|
|
fallback; \
|
|
|
|
}
|
|
|
|
|
|
|
|
void ngx_log_error_core(int level, ngx_log_t *log, ngx_err_t err,
|
|
|
|
const char *fmt, ...);
|
|
|
|
|
2003-12-01 04:03:18 +08:00
|
|
|
/*********************************/
|
2003-05-20 23:37:55 +08:00
|
|
|
|
2002-08-07 00:39:45 +08:00
|
|
|
#elif (HAVE_C99_VARIADIC_MACROS)
|
|
|
|
|
|
|
|
#define HAVE_VARIADIC_MACROS 1
|
|
|
|
|
|
|
|
#define ngx_log_error(level, log, ...) \
|
|
|
|
if (log->log_level >= level) ngx_log_error_core(level, log, __VA_ARGS__)
|
|
|
|
|
2002-08-22 23:24:03 +08:00
|
|
|
#if (NGX_DEBUG)
|
2002-08-07 00:39:45 +08:00
|
|
|
#define ngx_log_debug(log, ...) \
|
|
|
|
if (log->log_level == NGX_LOG_DEBUG) \
|
|
|
|
ngx_log_error_core(NGX_LOG_DEBUG, log, 0, __VA_ARGS__)
|
|
|
|
#else
|
|
|
|
#define ngx_log_debug(log, ...)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define ngx_assert(assert, fallback, log, ...) \
|
|
|
|
if (!(assert)) { \
|
|
|
|
if (log->log_level >= NGX_LOG_ALERT) \
|
|
|
|
ngx_log_error_core(NGX_LOG_ALERT, log, 0, __VA_ARGS__); \
|
|
|
|
fallback; \
|
|
|
|
}
|
|
|
|
|
|
|
|
void ngx_log_error_core(int level, ngx_log_t *log, ngx_err_t err,
|
|
|
|
const char *fmt, ...);
|
|
|
|
|
2003-12-01 04:03:18 +08:00
|
|
|
/*********************************/
|
2003-05-20 23:37:55 +08:00
|
|
|
|
2002-08-07 00:39:45 +08:00
|
|
|
#else /* NO VARIADIC MACROS */
|
|
|
|
|
2003-12-01 04:03:18 +08:00
|
|
|
#define HAVE_VARIADIC_MACROS 0
|
|
|
|
|
2002-08-22 23:24:03 +08:00
|
|
|
#if (NGX_DEBUG)
|
2002-08-07 00:39:45 +08:00
|
|
|
#define ngx_log_debug(log, text) \
|
|
|
|
if (log->log_level == NGX_LOG_DEBUG) \
|
2003-12-01 04:03:18 +08:00
|
|
|
ngx_log_debug_core(log, 0, text)
|
2002-08-07 00:39:45 +08:00
|
|
|
#else
|
|
|
|
#define ngx_log_debug(log, text)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define ngx_assert(assert, fallback, log, text) \
|
|
|
|
if (!(assert)) { \
|
|
|
|
if (log->log_level >= NGX_LOG_ALERT) \
|
|
|
|
ngx_assert_core(log, text); \
|
|
|
|
fallback; \
|
|
|
|
}
|
|
|
|
|
|
|
|
void ngx_log_error(int level, ngx_log_t *log, ngx_err_t err,
|
|
|
|
const char *fmt, ...);
|
|
|
|
void ngx_log_error_core(int level, ngx_log_t *log, ngx_err_t err,
|
|
|
|
const char *fmt, va_list args);
|
2003-12-01 04:03:18 +08:00
|
|
|
void ngx_log_debug_core(ngx_log_t *log, ngx_err_t err, const char *fmt, ...);
|
2002-08-07 00:39:45 +08:00
|
|
|
void ngx_assert_core(ngx_log_t *log, const char *fmt, ...);
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* VARIADIC MACROS */
|
|
|
|
|
|
|
|
|
2003-12-01 04:03:18 +08:00
|
|
|
/*********************************/
|
|
|
|
|
|
|
|
#if (HAVE_VARIADIC_MACROS)
|
|
|
|
|
|
|
|
#if (NGX_DEBUG)
|
|
|
|
#define ngx_log_debug0(level, log, err, fmt) \
|
|
|
|
if (log->log_level & level) \
|
|
|
|
ngx_log_error_core(NGX_LOG_DEBUG, log, err, fmt)
|
|
|
|
#else
|
|
|
|
#define ngx_log_debug0(level, log, err, fmt)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if (NGX_DEBUG)
|
|
|
|
#define ngx_log_debug1(level, log, err, fmt, arg1) \
|
|
|
|
if (log->log_level & level) \
|
|
|
|
ngx_log_error_core(NGX_LOG_DEBUG, log, err, fmt, arg1)
|
|
|
|
#else
|
|
|
|
#define ngx_log_debug1(level, log, err, fmt, arg1)
|
|
|
|
#endif
|
|
|
|
|
2003-12-15 04:10:27 +08:00
|
|
|
#if (NGX_DEBUG)
|
|
|
|
#define ngx_log_debug2(level, log, err, fmt, arg1, arg2) \
|
|
|
|
if (log->log_level & level) \
|
|
|
|
ngx_log_error_core(NGX_LOG_DEBUG, log, err, fmt, arg1, arg2)
|
|
|
|
#else
|
|
|
|
#define ngx_log_debug2(level, log, err, fmt, arg1, arg2)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if (NGX_DEBUG)
|
|
|
|
#define ngx_log_debug6(level, log, err, fmt, \
|
|
|
|
arg1, arg2, arg3, arg4, arg5, arg6) \
|
|
|
|
if (log->log_level & level) \
|
|
|
|
ngx_log_error_core(NGX_LOG_DEBUG, log, err, fmt, \
|
|
|
|
arg1, arg2, arg3, arg4, arg5, arg6)
|
|
|
|
#else
|
|
|
|
#define ngx_log_debug6(level, log, err, fmt, arg1, arg2, arg3, arg4, arg5, arg6)
|
|
|
|
#endif
|
|
|
|
|
2003-12-01 04:03:18 +08:00
|
|
|
/*********************************/
|
|
|
|
|
|
|
|
#else /* NO VARIADIC MACROS */
|
|
|
|
|
|
|
|
#if (NGX_DEBUG)
|
|
|
|
#define ngx_log_debug0(level, log, err, fmt) \
|
|
|
|
if (log->log_level & level) \
|
|
|
|
ngx_log_debug_core(log, err, fmt)
|
|
|
|
#else
|
|
|
|
#define ngx_log_debug0(level, log, err, fmt)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if (NGX_DEBUG)
|
|
|
|
#define ngx_log_debug1(level, log, err, fmt, arg1) \
|
|
|
|
if (log->log_level & level) \
|
|
|
|
ngx_log_debug_core(log, err, fmt, arg1)
|
|
|
|
#else
|
|
|
|
#define ngx_log_debug1(level, log, err, fmt, arg1)
|
|
|
|
#endif
|
2003-12-15 04:10:27 +08:00
|
|
|
|
|
|
|
#if (NGX_DEBUG)
|
|
|
|
#define ngx_log_debug2(level, log, err, fmt, arg1, arg2) \
|
|
|
|
if (log->log_level & level) \
|
|
|
|
ngx_log_debug_core(log, err, fmt, arg1, arg2)
|
|
|
|
#else
|
|
|
|
#define ngx_log_debug2(level, log, err, fmt, arg1, arg2)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if (NGX_DEBUG)
|
|
|
|
#define ngx_log_debug6(level, log, err, fmt, \
|
|
|
|
arg1, arg2, arg3, arg4, arg5, arg6) \
|
|
|
|
if (log->log_level & level) \
|
|
|
|
ngx_log_debug_core(log, err, fmt, arg1, arg2, arg3, arg4, arg5, arg6)
|
|
|
|
#else
|
|
|
|
#define ngx_log_debug6(level, log, err, fmt, arg1, arg2, arg3, arg4, arg5, arg6)
|
|
|
|
#endif
|
|
|
|
|
2003-12-01 04:03:18 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************/
|
|
|
|
|
2003-06-16 02:32:13 +08:00
|
|
|
#define ngx_log_alloc_log(pool, log) ngx_palloc(pool, log, sizeof(ngx_log_t))
|
|
|
|
#define ngx_log_copy_log(new, old) ngx_memcpy(new, old, sizeof(ngx_log_t))
|
|
|
|
|
2003-06-03 23:42:58 +08:00
|
|
|
ngx_log_t *ngx_log_init_errlog();
|
2003-12-09 04:48:12 +08:00
|
|
|
ngx_log_t *ngx_log_create_errlog(ngx_cycle_t *cycle, ngx_array_t *args);
|
2003-07-02 22:41:17 +08:00
|
|
|
|
2003-06-03 23:42:58 +08:00
|
|
|
|
|
|
|
extern ngx_module_t ngx_errlog_module;
|
|
|
|
|
|
|
|
|
2002-08-07 00:39:45 +08:00
|
|
|
#endif /* _NGX_LOG_H_INCLUDED_ */
|