comparison src/core/ngx_log.h @ 3:34a521b1a148

nginx-0.0.1-2002-08-20-18:48:28 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 20 Aug 2002 14:48:28 +0000
parents 4eff17414a43
children c5f071d376e5
comparison
equal deleted inserted replaced
2:ffffe1499bce 3:34a521b1a148
14 NGX_LOG_INFO, 14 NGX_LOG_INFO,
15 NGX_LOG_DEBUG 15 NGX_LOG_DEBUG
16 } ngx_log_e; 16 } ngx_log_e;
17 17
18 /* 18 /*
19 "[%time] [%level] %pid#%tid: %message:(%errno)%errstr, while %action"
20 " %peer and processing %context"
21
22 message = "recv() failed";
23 errno = 32;
24 action = "reading request headers from client";
25 peer = "192.168.1.1";
26 context = "URL /"
27
28 "[2002/08/20 12:00:00] [error] 412#3: recv() failed:(32)Broken pipe,"
29 " while reading request headers from client 192.168.1.1"
30 " and processing URL /"
31
32
33 OLD:
19 "... while ", action = "reading client request headers" 34 "... while ", action = "reading client request headers"
20 "... while reading client request headers" 35 "... while reading client request headers"
21 "... while ", action = "reading client request headers" 36 "... while ", action = "reading client request headers"
22 context: pop3 user account 37 context: pop3 user account
23 "... while reading client command for 'john_doe'" 38 "... while reading client command for 'john_doe'"