summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2007-02-20 15:47:54 +0000
committerIgor Sysoev <igor@sysoev.ru>2007-02-20 15:47:54 +0000
commit40460bab8d3970328eb86fcba3bd527781ff107a (patch)
tree212252d98f2739b81b84f5594f5cb909f2cc045b
parentbb4c112fe5079a94d371c4e2a7acc8fa65327218 (diff)
downloadnginx-40460bab8d3970328eb86fcba3bd527781ff107a.tar.gz
nginx-40460bab8d3970328eb86fcba3bd527781ff107a.tar.bz2
ngx_log_error() > ngx_conf_log_error()
-rw-r--r--src/core/ngx_conf_file.c81
1 files changed, 27 insertions, 54 deletions
diff --git a/src/core/ngx_conf_file.c b/src/core/ngx_conf_file.c
index 69697e48f..b33b1d502 100644
--- a/src/core/ngx_conf_file.c
+++ b/src/core/ngx_conf_file.c
@@ -154,10 +154,8 @@ ngx_conf_parse(ngx_conf_t *cf, ngx_str_t *filename)
}
if (rc == NGX_CONF_FILE_DONE && block) {
- ngx_log_error(NGX_LOG_EMERG, cf->log, 0,
- "unexpected end of file in %s:%ui, expecting \"}\"",
- cf->conf_file->file.name.data,
- cf->conf_file->line);
+ ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
+ "unexpected end of file, expecting \"}\"");
goto failed;
}
@@ -181,10 +179,7 @@ ngx_conf_parse(ngx_conf_t *cf, ngx_str_t *filename)
goto failed;
}
- ngx_log_error(NGX_LOG_EMERG, cf->log, 0,
- "%s in %s:%ui",
- rv, cf->conf_file->file.name.data,
- cf->conf_file->line);
+ ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, rv);
goto failed;
}
@@ -275,20 +270,16 @@ ngx_conf_handler(ngx_conf_t *cf, ngx_int_t last)
}
if (!(cmd->type & NGX_CONF_BLOCK) && last != NGX_OK) {
- ngx_log_error(NGX_LOG_EMERG, cf->log, 0,
- "directive \"%s\" in %s:%ui "
- "is not terminated by \";\"",
- name->data, cf->conf_file->file.name.data,
- cf->conf_file->line);
+ ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
+ "directive \"%s\" is not terminated by \";\"",
+ name->data);
return NGX_ERROR;
}
if ((cmd->type & NGX_CONF_BLOCK) && last != NGX_CONF_BLOCK_START) {
- ngx_log_error(NGX_LOG_EMERG, cf->log, 0,
- "directive \"%s\" in %s:%ui "
- "has not the opening \"{\"",
- name->data, cf->conf_file->file.name.data,
- cf->conf_file->line);
+ ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
+ "directive \"%s\" has no opening \"{\"",
+ name->data);
return NGX_ERROR;
}
@@ -352,40 +343,31 @@ ngx_conf_handler(ngx_conf_t *cf, ngx_int_t last)
return NGX_ERROR;
}
- ngx_log_error(NGX_LOG_EMERG, cf->log, 0,
- "the \"%s\" directive %s in %s:%ui",
- name->data, rv, cf->conf_file->file.name.data,
- cf->conf_file->line);
+ ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
+ "the \"%s\" directive %s", name->data, rv);
return NGX_ERROR;
}
}
if (multi == 0) {
- ngx_log_error(NGX_LOG_EMERG, cf->log, 0,
- "unknown directive \"%s\" in %s:%ui",
- name->data, cf->conf_file->file.name.data,
- cf->conf_file->line);
+ ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
+ "unknown directive \"%s\"", name->data);
return NGX_ERROR;
}
not_allowed:
- ngx_log_error(NGX_LOG_EMERG, cf->log, 0,
- "directive \"%s\" in %s:%ui "
- "is not allowed here",
- name->data, cf->conf_file->file.name.data,
- cf->conf_file->line);
+ ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
+ "directive \"%s\" is not allowed here", name->data);
return NGX_ERROR;
invalid:
- ngx_log_error(NGX_LOG_EMERG, cf->log, 0,
- "invalid number arguments in "
- "directive \"%s\" in %s:%ui",
- name->data, cf->conf_file->file.name.data,
- cf->conf_file->line);
+ ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
+ "invalid number arguments in directive \"%s\"",
+ name->data);
return NGX_ERROR;
}
@@ -420,11 +402,9 @@ ngx_conf_read_token(ngx_conf_t *cf)
>= ngx_file_size(&cf->conf_file->file.info))
{
if (cf->args->nelts > 0) {
- ngx_log_error(NGX_LOG_EMERG, cf->log, 0,
- "unexpected end of file in %s:%ui, "
- "expecting \";\" or \"}\"",
- cf->conf_file->file.name.data,
- cf->conf_file->line);
+ ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
+ "unexpected end of file, "
+ "expecting \";\" or \"}\"");
return NGX_ERROR;
}
@@ -488,11 +468,8 @@ ngx_conf_read_token(ngx_conf_t *cf)
need_space = 0;
} else {
- ngx_log_error(NGX_LOG_EMERG, cf->log, 0,
- "unexpected \"%c\" in %s:%ui",
- ch, cf->conf_file->file.name.data,
- cf->conf_file->line);
-
+ ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
+ "unexpected \"%c\"", ch);
return NGX_ERROR;
}
}
@@ -509,10 +486,8 @@ ngx_conf_read_token(ngx_conf_t *cf)
case ';':
case '{':
if (cf->args->nelts == 0) {
- ngx_log_error(NGX_LOG_EMERG, cf->log, 0,
- "unexpected \"%c\" in %s:%ui",
- ch, cf->conf_file->file.name.data,
- cf->conf_file->line);
+ ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
+ "unexpected \"%c\"", ch);
return NGX_ERROR;
}
@@ -524,10 +499,8 @@ ngx_conf_read_token(ngx_conf_t *cf)
case '}':
if (cf->args->nelts != 0) {
- ngx_log_error(NGX_LOG_EMERG, cf->log, 0,
- "unexpected \"}\" in %s:%ui",
- cf->conf_file->file.name.data,
- cf->conf_file->line);
+ ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
+ "unexpected \"}\"");
return NGX_ERROR;
}