diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2012-05-31 13:01:07 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2012-05-31 13:01:07 +0200 |
commit | 21fc2ac97775bf223f9b4882cb4b35898bce8984 (patch) | |
tree | 7c5365a6be23e4852351941a9eeeaa94a75b72df /tools/syslogd.c | |
parent | a4980cbde24b48c5540435d27d01651d5ca46d03 (diff) | |
download | rsyslog-21fc2ac97775bf223f9b4882cb4b35898bce8984.tar.gz rsyslog-21fc2ac97775bf223f9b4882cb4b35898bce8984.tar.bz2 rsyslog-21fc2ac97775bf223f9b4882cb4b35898bce8984.zip |
cosmetic: slightly improved debug output
Diffstat (limited to 'tools/syslogd.c')
-rw-r--r-- | tools/syslogd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/syslogd.c b/tools/syslogd.c index f3f27598..7872cb5f 100644 --- a/tools/syslogd.c +++ b/tools/syslogd.c @@ -2506,7 +2506,7 @@ doGlblProcessInit(void) if( !(Debug == DEBUG_FULL || NoFork) ) { - DBGPRINTF("Checking pidfile.\n"); + DBGPRINTF("Checking pidfile '%s'.\n", PidFile); if (!check_pid(PidFile)) { memset(&sigAct, 0, sizeof (sigAct)); @@ -2579,7 +2579,7 @@ doGlblProcessInit(void) } /* tuck my process id away */ - DBGPRINTF("Writing pidfile %s.\n", PidFile); + DBGPRINTF("Writing pidfile '%s'.\n", PidFile); if (!check_pid(PidFile)) { if (!write_pid(PidFile)) |