From: wessels <> Date: Tue, 27 Aug 1996 01:09:34 +0000 (+0000) Subject: bump some debugs up since we report them in errorpage() now instead X-Git-Tag: SQUID_3_0_PRE1~5928 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=723965e449109d5055be49a5ed87e570248a9b5e;p=thirdparty%2Fsquid.git bump some debugs up since we report them in errorpage() now instead --- diff --git a/src/comm.cc b/src/comm.cc index 62bc3b0b69..91f3d2b6a3 100644 --- a/src/comm.cc +++ b/src/comm.cc @@ -1,6 +1,6 @@ /* - * $Id: comm.cc,v 1.56 1996/08/23 21:29:56 wessels Exp $ + * $Id: comm.cc,v 1.57 1996/08/26 19:09:34 wessels Exp $ * * DEBUG: section 5 Socket Functions * AUTHOR: Harvest Derived @@ -323,7 +323,7 @@ int comm_connect(sock, dest_host, dest_port) to_addr.sin_family = AF_INET; if ((hp = ipcache_gethostbyname(dest_host, IP_BLOCKING_LOOKUP)) == 0) { - debug(5, 1, "comm_connect: Failure to lookup host: %s.\n", dest_host); + debug(5, 3, "comm_connect: Failure to lookup host: %s.\n", dest_host); return (COMM_ERROR); } xmemcpy(&to_addr.sin_addr, hp->h_addr, hp->h_length); @@ -404,7 +404,7 @@ int comm_connect_addr(sock, address) if (getsockopt(sock, SOL_SOCKET, SO_ERROR, (char *) &x, &len) >= 0) errno = x; default: - debug(5, 1, "connect: %s:%d: %s.\n", + debug(5, 3, "connect: %s:%d: %s.\n", fqdnFromAddr(address->sin_addr), ntohs(address->sin_port), xstrerror());