summaryrefslogtreecommitdiff
path: root/server/server.c
diff options
context:
space:
mode:
authorGravatar Richard Basch <probe@mit.edu>1993-03-22 22:10:19 +0000
committerGravatar Richard Basch <probe@mit.edu>1993-03-22 22:10:19 +0000
commit8f7b0e35d412bebe53c35054976ae59e2e2292c9 (patch)
tree747280b2cfc04391025d675a195eda0cfcb9812f /server/server.c
parentd694f31894a542e08aa3580e725821ebf5f099b5 (diff)
Changed some of the logging levels
Diffstat (limited to 'server/server.c')
-rw-r--r--server/server.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/server/server.c b/server/server.c
index 381593d..2c33a37 100644
--- a/server/server.c
+++ b/server/server.c
@@ -765,14 +765,14 @@ kill_clt(notice, server)
if (extract_addr(notice, &who) != ZERR_NONE)
return(ZERR_NONE); /* XXX */
if (!(host = hostm_find_host(&who.sin_addr))) {
- syslog(LOG_WARNING, "kill_clt: no such host (%s, from %s)",
+ syslog(LOG_NOTICE, "kill_clt: no such host (%s, from %s)",
inet_ntoa (who.sin_addr), server->addr);
return(ZERR_NONE); /* XXX */
}
if (host->zh_locked)
return(ZSRV_REQUEUE);
if (!(client = client_which_client(&who, notice))) {
- syslog(LOG_WARNING, "kill_clt: no such client (%s/%d) from %s",
+ syslog(LOG_NOTICE, "kill_clt: no such client (%s/%d) from %s",
inet_ntoa (who.sin_addr), ntohs (who.sin_port),
server->addr);
return(ZERR_NONE); /* XXX */
@@ -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_INFO,
+ syslog(LOG_NOTICE,
"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_INFO,
+ syslog(LOG_NOTICE,
"recover_clt: client not found (%s/%d, from %s)",
inet_ntoa (who.sin_addr), ntohs (who.sin_port),
server->addr);