aboutsummaryrefslogtreecommitdiff
path: root/lib/daemon.c
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2011-04-05 12:17:08 -0700
committerBen Pfaff <blp@nicira.com>2011-04-19 09:32:18 -0700
commit0b3769425ffdc935588254dae9a4c31788846e2f (patch)
tree33412a82661d9a82ab4ea6b3e6a15256a659514e /lib/daemon.c
parent8bbc128e92c47fc9fff25144523d844aabc0fee9 (diff)
daemon: Reduce log level of "pid file is stale" message.
This message will appear repeatedly when ovs-vswitchd is running, if there is any stale pidfile in /var/run/openvswitch, because ovs-vswitchd reads all of the pidfiles in that directory periodically to update statistics.
Diffstat (limited to 'lib/daemon.c')
-rw-r--r--lib/daemon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/daemon.c b/lib/daemon.c
index aa971f2a..9c814ea9 100644
--- a/lib/daemon.c
+++ b/lib/daemon.c
@@ -554,7 +554,7 @@ read_pidfile__(const char *pidfile, bool delete_if_stale)
* pidfile locked, and only that process has the right to unlink it. */
if (!delete_if_stale) {
error = ESRCH;
- VLOG_WARN("%s: pid file is stale", pidfile);
+ VLOG_DBG("%s: pid file is stale", pidfile);
goto error;
}