From: wessels <> Date: Tue, 9 May 2006 00:22:03 +0000 (+0000) Subject: Clean up some recently-added debugging messages. X-Git-Tag: SQUID_3_0_PRE4~175 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e4274128086cefde44246de3b5c6f2bf0454e27b;p=thirdparty%2Fsquid.git Clean up some recently-added debugging messages. --- diff --git a/src/ftp.cc b/src/ftp.cc index 9d83e464ed..b12e5337b8 100644 --- a/src/ftp.cc +++ b/src/ftp.cc @@ -1,6 +1,6 @@ /* - * $Id: ftp.cc,v 1.394 2006/05/06 22:13:18 wessels Exp $ + * $Id: ftp.cc,v 1.395 2006/05/08 18:22:03 wessels Exp $ * * DEBUG: section 9 File Transfer Protocol (FTP) * AUTHOR: Harvest Derived @@ -2167,7 +2167,7 @@ ftpSendPasv(FtpStateData * ftpState) struct sockaddr_in addr; socklen_t addr_len; - debugs(9, 1, HERE << "ftpSendPasv"); + debugs(9, 3, HERE << "ftpSendPasv started"); if (ftpState->request->method == METHOD_HEAD) { /* Terminate here for HEAD requests */ @@ -2200,8 +2200,6 @@ ftpSendPasv(FtpStateData * ftpState) addr_len = sizeof(addr); - debugs(9, 1, HERE << "ftpSendPasv"); - if (getsockname(ftpState->ctrl.fd, (struct sockaddr *) &addr, &addr_len)) { debug(9, 0) ("ftpSendPasv: getsockname(%d,..): %s\n", ftpState->ctrl.fd, xstrerror()); @@ -3085,7 +3083,7 @@ FtpStateData::appendSuccessHeader() StoreEntry *e = entry; HttpReply *newrep = new HttpReply; - debugs(0,0,HERE << "FtpStateData::appendSuccessHeader"); + debugs(9, 3, HERE << "FtpStateData::appendSuccessHeader starting"); reply = HTTPMSGLOCK(newrep);