summaryrefslogtreecommitdiff
path: root/src/bus-proxyd
diff options
context:
space:
mode:
authorDaniel Buch <boogiewasthere@gmail.com>2015-07-25 14:12:39 +0200
committerDaniel Buch <boogiewasthere@gmail.com>2015-07-25 14:12:39 +0200
commite1d654341b9ea2040182ffa2ec43e4c88a98b870 (patch)
tree1c93aa8203bdc9cc0e7e5ee38055c1537b2e7a56 /src/bus-proxyd
parent3460810e8c61986a4605ad80c9e4805eb95cb5a1 (diff)
proxyd: downgrade to log_debug() for unmatched broadcasts
Diffstat (limited to 'src/bus-proxyd')
-rw-r--r--src/bus-proxyd/proxy.c2
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;