nginx-0.0.1-2003-05-20-19:37:55 import
diff --git a/src/core/ngx_log.h b/src/core/ngx_log.h
index c7b780f..b549d80 100644
--- a/src/core/ngx_log.h
+++ b/src/core/ngx_log.h
@@ -6,7 +6,8 @@
 #include <ngx_errno.h>
 
 typedef enum {
-    NGX_LOG_EMERG = 0,
+    NGX_LOG_STDERR = 0,
+    NGX_LOG_EMERG,
     NGX_LOG_ALERT,
     NGX_LOG_CRIT,
     NGX_LOG_ERR,
@@ -16,6 +17,7 @@
     NGX_LOG_DEBUG
 } ngx_log_e;
 
+
 /*
     "[%time] [%level] %pid#%tid: %message:(%errno)%errstr, while %action"
         " %peer and while processing %context"
@@ -59,6 +61,7 @@
     "... while reading client command for 'john_doe'"
 */
 
+
 typedef struct {
     int       log_level;
     ngx_fd_t  fd;
@@ -100,6 +103,7 @@
 void ngx_log_error_core(int level, ngx_log_t *log, ngx_err_t err,
                         const char *fmt, ...);
 
+
 #elif (HAVE_C99_VARIADIC_MACROS)
 
 #define HAVE_VARIADIC_MACROS  1
@@ -125,6 +129,7 @@
 void ngx_log_error_core(int level, ngx_log_t *log, ngx_err_t err,
                         const char *fmt, ...);
 
+
 #else /* NO VARIADIC MACROS */
 
 #include <stdarg.h>