diff options
author | Lennart Poettering <lennart@poettering.net> | 2019-08-15 12:34:31 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2019-08-16 00:44:20 +0200 |
commit | 73fdd4794085e28917bb1318b2984e573fd753a1 (patch) | |
tree | 49d7295c87d035eb4f031213df4e4d205bf61e51 /src/shared/unit-file.c | |
parent | networkctl: avoid outputting '(null)' for LLDP ports without description (diff) | |
download | systemd-73fdd4794085e28917bb1318b2984e573fd753a1.tar.xz systemd-73fdd4794085e28917bb1318b2984e573fd753a1.zip |
unit-file: downgrade accidentaly high-prio debug log message
Diffstat (limited to '')
-rw-r--r-- | src/shared/unit-file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/unit-file.c b/src/shared/unit-file.c index f83633be5f..e15ce26940 100644 --- a/src/shared/unit-file.c +++ b/src/shared/unit-file.c @@ -488,7 +488,7 @@ int unit_file_find_fragment( } if (!streq(unit_name, inst)) - log_info("%s: %s has alias %s", __func__, unit_name, inst); + log_debug("%s: %s has alias %s", __func__, unit_name, inst); r = set_consume(names, TAKE_PTR(inst)); if (r < 0) return r; |