From 0027e12f4450a44687ff00059987663a0f69896e Mon Sep 17 00:00:00 2001 From: Jim Jagielski Date: Wed, 29 Jan 2014 15:10:08 +0000 Subject: [PATCH] More debugging git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1562472 13f79535-47bb-0310-9956-ffa450edef68 --- docs/log-message-tags/next-number | 2 +- modules/slotmem/mod_slotmem_shm.c | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/log-message-tags/next-number b/docs/log-message-tags/next-number index 12170310d2..737aceaa62 100644 --- a/docs/log-message-tags/next-number +++ b/docs/log-message-tags/next-number @@ -1 +1 @@ -2601 +2603 diff --git a/modules/slotmem/mod_slotmem_shm.c b/modules/slotmem/mod_slotmem_shm.c index 2b85fa605a..7585934f87 100644 --- a/modules/slotmem/mod_slotmem_shm.c +++ b/modules/slotmem/mod_slotmem_shm.c @@ -316,12 +316,17 @@ static apr_status_t slotmem_create(ap_slotmem_instance_t **new, } fname = slotmem_filename(pool, name, 0); if (fname) { + ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, ap_server_conf, APLOGNO(02602) + "create looking for %s", fname); + /* first try to attach to existing slotmem */ if (next) { for (;;) { if (strcmp(next->name, fname) == 0) { /* we already have it */ *new = next; + ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, ap_server_conf, APLOGNO(02603) + "create found %s", fname); return APR_SUCCESS; } if (!next->next) { -- 2.40.0