From: Daniel Buch Date: Sat, 25 Jul 2015 12:12:39 +0000 (+0200) Subject: proxyd: downgrade to log_debug() for unmatched broadcasts X-Git-Tag: v223~28^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e1d654341b9ea2040182ffa2ec43e4c88a98b870;p=thirdparty%2Fsystemd.git proxyd: downgrade to log_debug() for unmatched broadcasts --- diff --git a/src/bus-proxyd/proxy.c b/src/bus-proxyd/proxy.c index 89c68134fc2..7163d6daef5 100644 --- a/src/bus-proxyd/proxy.c +++ b/src/bus-proxyd/proxy.c @@ -733,7 +733,7 @@ static int proxy_process_destination_to_local(Proxy *p) { /* discard broadcasts that were not matched by any MATCH rule */ if (!matched && !sd_bus_message_get_destination(m)) { if (!matched_synthetic) - log_warning("Dropped unmatched broadcast: uid=" UID_FMT " gid=" GID_FMT" message=%s path=%s interface=%s member=%s", + log_debug("Dropped unmatched broadcast: uid=" UID_FMT " gid=" GID_FMT" message=%s path=%s interface=%s member=%s", p->local_creds.uid, p->local_creds.gid, bus_message_type_to_string(m->header->type), strna(m->path), strna(m->interface), strna(m->member)); return 1;