From b289046ffe644de2f76ff0d5b312c1c654fda06e Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Fri, 20 Jun 2014 12:02:51 +1000 Subject: [PATCH] Demote the socket file exists message to notice level --- src/ckpool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ckpool.c b/src/ckpool.c index 674aadf8..a9f234c1 100644 --- a/src/ckpool.c +++ b/src/ckpool.c @@ -529,7 +529,7 @@ static bool write_pid(ckpool_t *ckp, const char *path, pid_t pid) if (!stat(path, &statbuf)) { int oldpid; - LOGWARNING("File %s exists", path); + LOGNOTICE("File %s exists", path); fp = fopen(path, "r"); if (!fp) { LOGEMERG("Failed to open file %s", path);