diff options
author | Igor Sysoev <igor@sysoev.ru> | 2004-02-23 20:57:12 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2004-02-23 20:57:12 +0000 |
commit | b54698b5798b7f1a54226274347ce1faee5a92a4 (patch) | |
tree | 4708e97a3ed7ae2fc5cc56b02a5f606dc0522707 /src/core/ngx_log.c | |
parent | 0ee5d3c106f98c06dbad8b61f85a7d0c8e65f970 (diff) | |
download | nginx-b54698b5798b7f1a54226274347ce1faee5a92a4.tar.gz nginx-b54698b5798b7f1a54226274347ce1faee5a92a4.zip |
nginx-0.0.2-2004-02-23-23:57:12 import
Diffstat (limited to 'src/core/ngx_log.c')
-rw-r--r-- | src/core/ngx_log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ngx_log.c b/src/core/ngx_log.c index 7fdd8984c..349fe6bb1 100644 --- a/src/core/ngx_log.c +++ b/src/core/ngx_log.c @@ -79,7 +79,7 @@ void ngx_log_error_core(int level, ngx_log_t *log, ngx_err_t err, /* pid#tid */ len += ngx_snprintf(errstr + len, max - len, - PID_T_FMT "#%d: ", ngx_pid, /* STUB */ 0); + PID_T_FMT "#" TID_T_FMT ": ", ngx_log_pid, ngx_log_tid); if (log->data && *(int *) log->data != -1) { len += ngx_snprintf(errstr + len, max - len, |