diff options
author | Martin Vobruba <vobruba.martin@gmail.com> | 2016-07-04 10:46:44 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2016-07-11 09:34:48 +0200 |
commit | 2809a676b55cebd4c6f8a8895ffe286db0704e87 (patch) | |
tree | 82234099f4941228c5c0539b06107e8cdddc05f8 /sapi/phpdbg/phpdbg.c | |
parent | 2e3903b2d62976087b3ce74275372052a9922a36 (diff) | |
download | php-git-2809a676b55cebd4c6f8a8895ffe286db0704e87.tar.gz |
Pass error severity to SAPI modules and raise corresponding error level in Apache
Diffstat (limited to 'sapi/phpdbg/phpdbg.c')
-rw-r--r-- | sapi/phpdbg/phpdbg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/phpdbg/phpdbg.c b/sapi/phpdbg/phpdbg.c index ecd3f3974e..e4fa7a5874 100644 --- a/sapi/phpdbg/phpdbg.c +++ b/sapi/phpdbg/phpdbg.c @@ -795,7 +795,7 @@ static void php_sapi_phpdbg_send_header(sapi_header_struct *sapi_header, void *s } /* }}} */ -static void php_sapi_phpdbg_log_message(char *message) /* {{{ */ +static void php_sapi_phpdbg_log_message(char *message, int syslog_type_int) /* {{{ */ { /* * We must not request TSRM before being booted |