From 5afd74bed6b9a93b800bf0b5cc8b4e82990e1e9e Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Thu, 31 Mar 2016 22:33:26 +0300 Subject: Removed the prototype mysql module. --- src/core/ngx_log.c | 2 +- src/core/ngx_log.h | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) (limited to 'src/core') diff --git a/src/core/ngx_log.c b/src/core/ngx_log.c index e7200795a..8e9408df0 100644 --- a/src/core/ngx_log.c +++ b/src/core/ngx_log.c @@ -86,7 +86,7 @@ static ngx_str_t err_levels[] = { static const char *debug_levels[] = { "debug_core", "debug_alloc", "debug_mutex", "debug_event", - "debug_http", "debug_mail", "debug_mysql", "debug_stream" + "debug_http", "debug_mail", "debug_stream" }; diff --git a/src/core/ngx_log.h b/src/core/ngx_log.h index 618d3ad62..afb73bf71 100644 --- a/src/core/ngx_log.h +++ b/src/core/ngx_log.h @@ -29,8 +29,7 @@ #define NGX_LOG_DEBUG_EVENT 0x080 #define NGX_LOG_DEBUG_HTTP 0x100 #define NGX_LOG_DEBUG_MAIL 0x200 -#define NGX_LOG_DEBUG_MYSQL 0x400 -#define NGX_LOG_DEBUG_STREAM 0x800 +#define NGX_LOG_DEBUG_STREAM 0x400 /* * do not forget to update debug_levels[] in src/core/ngx_log.c -- cgit