mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-12-30 11:08:50 -05:00
log: Add support for the systemd journal
The journal is a component of systemd, that captures Syslog messages, Kernel log messages, initial RAM disk and early boot messages as well as messages written to STDOUT/STDERR of all services, indexes them and makes this available to the user. It can be used in parallel, or in place of a traditional syslog daemon, such as rsyslog or syslog-ng. The journal offers a couple of improvements over traditional logging facilities (e.g. advanced filtering capabilities). This patch adds support for logging directly to the journal using its native API.
This commit is contained in:
parent
a8fea5c468
commit
d20ee7e7f2
8 changed files with 113 additions and 19 deletions
|
|
@ -817,7 +817,11 @@ int main(int argc, char *argv[]) {
|
|||
#endif
|
||||
|
||||
if (!conf->log_target) {
|
||||
#ifdef HAVE_JOURNAL
|
||||
pa_log_target target = { .type = PA_LOG_JOURNAL, .file = NULL };
|
||||
#else
|
||||
pa_log_target target = { .type = PA_LOG_SYSLOG, .file = NULL };
|
||||
#endif
|
||||
pa_log_set_target(&target);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue