summaryrefslogtreecommitdiff
path: root/server/server.c
diff options
context:
space:
mode:
authorGravatar Richard Basch <probe@mit.edu>1993-03-22 08:47:44 +0000
committerGravatar Richard Basch <probe@mit.edu>1993-03-22 08:47:44 +0000
commit75563982e38a977faf0842ae477aca7a9626d466 (patch)
tree196a5a9a513435f87a8143c0422bae19514be2ba /server/server.c
parent32a5cfee45edea3b121b9e78021d8fa196dc7706 (diff)
Changed log level of recover_clt messages to LOG_INFO (happen frequently)
Diffstat (limited to 'server/server.c')
-rw-r--r--server/server.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/server.c b/server/server.c
index 9de05a8..381593d 100644
--- a/server/server.c
+++ b/server/server.c
@@ -806,7 +806,7 @@ recover_clt(notice, server)
if ((status = extract_addr(notice, &who)) != ZERR_NONE)
return(status);
if (!(host = hostm_find_host(&who.sin_addr))) {
- syslog(LOG_WARNING,
+ syslog(LOG_INFO,
"recover_clt: host not found (%s, from %s)",
inet_ntoa (who.sin_addr), server->addr);
return(ZERR_NONE); /* XXX */
@@ -814,7 +814,7 @@ recover_clt(notice, server)
if (host->zh_locked)
return(ZSRV_REQUEUE);
if (!(client = client_which_client(&who, notice))) {
- syslog(LOG_WARNING,
+ syslog(LOG_INFO,
"recover_clt: client not found (%s/%d, from %s)",
inet_ntoa (who.sin_addr), ntohs (who.sin_port),
server->addr);