summaryrefslogtreecommitdiff
path: root/sapi
diff options
context:
space:
mode:
authorJérôme Loyet <fat@php.net>2010-08-31 09:41:04 +0000
committerJérôme Loyet <fat@php.net>2010-08-31 09:41:04 +0000
commitcbd21afae93d1f6f52c62126fe7a9158fcdb716d (patch)
tree129d97bdce7ee91d28e2cdffc0663cac78c8aee5 /sapi
parent0605d5f309dc55642e6e4d1ef750bcd8a25afcc5 (diff)
downloadphp-git-cbd21afae93d1f6f52c62126fe7a9158fcdb716d.tar.gz
- Add libevent version to the startup debug log in FPM.
Diffstat (limited to 'sapi')
-rw-r--r--sapi/fpm/fpm/fpm_events.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/fpm/fpm/fpm_events.c b/sapi/fpm/fpm/fpm_events.c
index aa4086d9d1..7ea15e8a75 100644
--- a/sapi/fpm/fpm/fpm_events.c
+++ b/sapi/fpm/fpm/fpm_events.c
@@ -90,7 +90,7 @@ int fpm_event_init_main(struct event_base **base) /* {{{ */
{
*base = event_base_new();
- zlog(ZLOG_STUFF, ZLOG_DEBUG, "libevent: using %s", event_base_get_method(*base));
+ zlog(ZLOG_STUFF, ZLOG_DEBUG, "libevent %s: using %s", event_get_version(), event_base_get_method(*base));
if (0 > fpm_cleanup_add(FPM_CLEANUP_ALL, fpm_event_cleanup, *base)) {
return -1;