diff options
author | Stefan Fritsch <sf@apache.org> | 2011-11-30 23:15:55 +0100 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2011-11-30 23:15:55 +0100 |
commit | 4554d337cce40e0720b2b9433bd3f7a12de4b11d (patch) | |
tree | 156d723592214fd7c843dc6e1aead1b29d834912 /modules/proxy/mod_proxy_ftp.c | |
parent | mod_cache: Apply the API change that allows future mod_cache providers to (diff) | |
download | apache2-4554d337cce40e0720b2b9433bd3f7a12de4b11d.tar.xz apache2-4554d337cce40e0720b2b9433bd3f7a12de4b11d.zip |
Remove some getpid() logging, this is now also included in the error log
format.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1208835 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/proxy/mod_proxy_ftp.c')
-rw-r--r-- | modules/proxy/mod_proxy_ftp.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/proxy/mod_proxy_ftp.c b/modules/proxy/mod_proxy_ftp.c index fdf87c1765..e7ee16609b 100644 --- a/modules/proxy/mod_proxy_ftp.c +++ b/modules/proxy/mod_proxy_ftp.c @@ -1917,9 +1917,8 @@ static int proxy_ftp_handler(request_rec *r, proxy_worker *worker, { apr_off_t readbytes; apr_brigade_length(bb, 0, &readbytes); - ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, - r->server, "proxy (PID %d): readbytes: %#x", - getpid(), readbytes); + ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, r->server, + "proxy: readbytes: %#x", readbytes); } #endif /* sanity check */ |