diff options
author | Daniel Buch <boogiewasthere@gmail.com> | 2015-07-25 14:12:39 +0200 |
---|---|---|
committer | Daniel Buch <boogiewasthere@gmail.com> | 2015-07-25 14:12:39 +0200 |
commit | e1d654341b9ea2040182ffa2ec43e4c88a98b870 (patch) | |
tree | 1c93aa8203bdc9cc0e7e5ee38055c1537b2e7a56 | |
parent | 3460810e8c61986a4605ad80c9e4805eb95cb5a1 (diff) |
proxyd: downgrade to log_debug() for unmatched broadcasts
-rw-r--r-- | src/bus-proxyd/proxy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bus-proxyd/proxy.c b/src/bus-proxyd/proxy.c index 89c68134fc..7163d6daef 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; |