diff options
author | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-04-25 14:09:09 +0200 |
---|---|---|
committer | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-04-25 17:06:43 +0200 |
commit | aa976d87889ae22b7347787a1ebd03a31dcc0a9e (patch) | |
tree | 08c1a7e8bff36f1def213ac176cf9f725c5c7f1f /src/path | |
parent | mkosi: Make sure systemd-resolved is started on boot (diff) | |
download | systemd-aa976d87889ae22b7347787a1ebd03a31dcc0a9e.tar.xz systemd-aa976d87889ae22b7347787a1ebd03a31dcc0a9e.zip |
tree-wide: Use log_setup() everywhere
Otherwise the default log target is the console and we won't use
the journal socket even if it is available.
Diffstat (limited to 'src/path')
-rw-r--r-- | src/path/path.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/path/path.c b/src/path/path.c index 1e69c6a355..3ab09344b4 100644 --- a/src/path/path.c +++ b/src/path/path.c @@ -218,9 +218,7 @@ static int parse_argv(int argc, char *argv[]) { static int run(int argc, char* argv[]) { int r; - log_show_color(true); - log_parse_environment(); - log_open(); + log_setup(); r = parse_argv(argc, argv); if (r <= 0) |