From: Zbigniew Jędrzejewski-Szmek Date: Thu, 20 Sep 2018 12:25:36 +0000 (+0200) Subject: basic/mount-util: reword debug message X-Git-Tag: v240~625^2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c745d2bfa00c9732de21a5cf157659b93e9fbec5;p=thirdparty%2Fsystemd.git basic/mount-util: reword debug message "because blacklisted" is not grammatical, it should be something like "becuase it is blacklisted", which in turn in too verbose. Let's use a shorter form. --- diff --git a/src/basic/mount-util.c b/src/basic/mount-util.c index ae62d3090e7..ddf00addff3 100644 --- a/src/basic/mount-util.c +++ b/src/basic/mount-util.c @@ -471,7 +471,7 @@ int bind_remount_recursive_with_mountinfo(const char *prefix, bool ro, char **bl if (path_startswith(p, *i)) { blacklisted = true; - log_debug("Not remounting %s, because blacklisted by %s, called for %s", p, *i, cleaned); + log_debug("Not remounting %s blacklisted by %s, called for %s", p, *i, cleaned); break; } }