diff options
author | Jim Jagielski <jim@apache.org> | 2014-01-29 16:10:08 +0100 |
---|---|---|
committer | Jim Jagielski <jim@apache.org> | 2014-01-29 16:10:08 +0100 |
commit | 0027e12f4450a44687ff00059987663a0f69896e (patch) | |
tree | 3572b8b58547bf09b4dfcf85586709caba03e48b /modules/slotmem | |
parent | - treat highlight sections in latex output identically to pre sections. (diff) | |
download | apache2-0027e12f4450a44687ff00059987663a0f69896e.tar.xz apache2-0027e12f4450a44687ff00059987663a0f69896e.zip |
More debugging
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1562472 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/slotmem')
-rw-r--r-- | modules/slotmem/mod_slotmem_shm.c | 5 |
1 files changed, 5 insertions, 0 deletions
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) { |