summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKay Sievers <kay@vrfy.org>2015-07-26 11:43:13 +0200
committerKay Sievers <kay@vrfy.org>2015-07-26 11:43:13 +0200
commit2909365c518ad1e25821b30a63e240fd8acb7953 (patch)
treef4eead60a47f196f774c4f2c0fec567e77f29a93 /src
parentfc7bdb583fe81db5050d46e93df26768ad0a1474 (diff)
parente1d654341b9ea2040182ffa2ec43e4c88a98b870 (diff)
Merge pull request #724 from dbuch/master
proxyd: downgrade to log_debug() for unmatched broadcasts
Diffstat (limited to 'src')
-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;