Skip to content

Commit b998bf3

Browse files
Pavel Zhukovreubenhwk
Pavel Zhukov
authored andcommitted
Write to stderr in non-daemonized mode
When radvd is running in daemonized mode it's ok to write logs in syslog. However in non-daemonized mode it makes debugging more difficult so it make sense to use standard error in such cases. Bug-Url: https://bugzilla.redhat.com/1589806
1 parent 4a89c1b commit b998bf3

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

log.c

+3
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ int log_open(int method, char const *ident, char const *log, int facility)
3232

3333
switch (log_method) {
3434
case L_NONE:
35+
case L_UNSPEC:
3536
case L_STDERR:
3637
break;
3738
case L_STDERR_CLEAN:
@@ -76,6 +77,7 @@ __attribute__((format(printf, 2, 0))) static int vlog(int prio, char const *form
7677

7778
switch (log_method) {
7879
case L_NONE:
80+
case L_UNSPEC:
7981
break;
8082
case L_SYSLOG:
8183
syslog(prio, "%s", buff);
@@ -136,6 +138,7 @@ int log_close(void)
136138
{
137139
switch (log_method) {
138140
case L_NONE:
141+
case L_UNSPEC:
139142
case L_STDERR:
140143
break;
141144
case L_STDERR_SYSLOG:

log.h

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
#define L_STDERR_SYSLOG 3
2121
#define L_LOGFILE 4
2222
#define L_STDERR_CLEAN 5
23+
#define L_UNSPEC 6
2324

2425
#define LOG_TIME_FORMAT "%b %d %H:%M:%S"
2526

radvd.c

+4-2
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ static pid_t daemonp(char const *daemon_pid_file_ident)
181181
int main(int argc, char *argv[])
182182
{
183183
int c;
184-
int log_method = L_STDERR_SYSLOG;
184+
int log_method = L_UNSPEC;
185185
char *logfile = PATH_RADVD_LOG;
186186
int facility = LOG_FACILITY;
187187
char *username = NULL;
@@ -294,14 +294,16 @@ int main(int argc, char *argv[])
294294
break;
295295
case L_STDERR_SYSLOG:
296296
case L_NONE:
297+
case L_UNSPEC:
297298
case L_SYSLOG:
298299
case L_LOGFILE:
299300
default:
300301
log_method = L_STDERR;
301302
break;
302303
}
303304
}
304-
305+
if (log_method == L_UNSPEC)
306+
log_method = daemonize ? L_STDERR_SYSLOG : L_STDERR;
305307
if (log_open(log_method, pname, logfile, facility) < 0) {
306308
perror("log_open");
307309
exit(1);

0 commit comments

Comments
 (0)