diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2015-01-06 00:29:40 -0500 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2015-01-06 00:29:40 -0500 |
commit | 553d2243e2a42783b8bb94addfb752b802c23311 (patch) | |
tree | 89abe0414a704ea4e9558d44be42eed7d7cfb107 /src/shared/logs-show.c | |
parent | 5dabb1e04e4521abf040e77a8322b70e7acdc7b0 (diff) |
tree-wide: remove unnecessary LOG_PRI
LOG_DEBUG is already a log level, there is no need to use LOG_PRI which
is for filtering out the facility.
Diffstat (limited to 'src/shared/logs-show.c')
-rw-r--r-- | src/shared/logs-show.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/logs-show.c b/src/shared/logs-show.c index 98972eda3b..dff0d30d71 100644 --- a/src/shared/logs-show.c +++ b/src/shared/logs-show.c @@ -1263,7 +1263,7 @@ int show_journal_by_unit( if (r < 0) return r; - if (_unlikely_(log_get_max_level() >= LOG_PRI(LOG_DEBUG))) { + if (_unlikely_(log_get_max_level() >= LOG_DEBUG)) { _cleanup_free_ char *filter; filter = journal_make_match_string(j); |