SYSLOG: more places to correct the loglevel parameters.
[citadel.git] / webcit / locate_host.c
index 72a73cca7395dad5bb04def1761118f5b4afe39c..d015f53f54ab1e6df2e7186a0f346ef2e5e297a5 100644 (file)
@@ -27,5 +27,5 @@ void locate_host(StrBuf *tbuf, int client_socket)
        getpeername(client_socket, (struct sockaddr *)&clientaddr, &addrlen);
        getnameinfo((struct sockaddr *)&clientaddr, addrlen, clienthost, sizeof(clienthost), NULL, 0, 0);
         StrBufAppendBufPlain(tbuf, clienthost, -1, 0);
-       syslog(9, "Client is at %s\n", clienthost);
+       syslog(LOG_DEBUG, "Client is at %s\n", clienthost);
 }