From 723965e449109d5055be49a5ed87e570248a9b5e Mon Sep 17 00:00:00 2001 From: wessels <> Date: Tue, 27 Aug 1996 01:09:34 +0000 Subject: [PATCH] bump some debugs up since we report them in errorpage() now instead --- src/comm.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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()); -- 2.47.3