diff options
author | Kay Sievers <kay@vrfy.org> | 2015-07-26 11:43:13 +0200 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2015-07-26 11:43:13 +0200 |
commit | 2909365c518ad1e25821b30a63e240fd8acb7953 (patch) | |
tree | f4eead60a47f196f774c4f2c0fec567e77f29a93 | |
parent | fc7bdb583fe81db5050d46e93df26768ad0a1474 (diff) | |
parent | e1d654341b9ea2040182ffa2ec43e4c88a98b870 (diff) |
Merge pull request #724 from dbuch/master
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; |