log: print a test line whever we manage to open a log device

This commit is contained in:
Lennart Poettering 2010-04-08 00:58:03 +02:00
parent e53ae031a0
commit 0dae83f9ff

4
log.c
View file

@ -61,6 +61,8 @@ int log_open_kmsg(void) {
if ((kmsg_fd = open("/dev/kmsg", O_WRONLY|O_NOCTTY|O_CLOEXEC)) < 0)
return -errno;
log_info("Succesfully opened /dev/kmsg for logging.");
return 0;
}
@ -110,6 +112,8 @@ int log_open_syslog(void) {
return -errno;
}
log_info("Succesfully opened syslog for logging.");
return 0;
}