diff options
author | Daniel Mack <daniel@zonque.org> | 2015-07-27 15:41:53 +0200 |
---|---|---|
committer | Daniel Mack <daniel@zonque.org> | 2015-07-27 15:41:53 +0200 |
commit | ad8373e9e3e9c86a79bfc29bb731b130ae2dab85 (patch) | |
tree | c89d2c3195b6e3ef7f32512724b91389539d718e | |
parent | baee30afce50b611724e6c6a4ca61a4469b11d9d (diff) |
bus-proxy: augment debug message for dropped broadcasts a bit
Add the PID we are proxying for, as well as the message's sender and
destination string, to the debug message that is printed when the proxy
drops unmatched broadcasts.
-rw-r--r-- | src/bus-proxyd/proxy.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bus-proxyd/proxy.c b/src/bus-proxyd/proxy.c index 7163d6daef..c37b09b9c0 100644 --- a/src/bus-proxyd/proxy.c +++ b/src/bus-proxyd/proxy.c @@ -733,9 +733,9 @@ 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_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)); + log_debug("Dropped unmatched broadcast: uid=" UID_FMT " gid=" GID_FMT " pid=" PID_FMT " message=%s path=%s interface=%s member=%s sender=%s destination=%s", + p->local_creds.uid, p->local_creds.gid, p->local_creds.pid, bus_message_type_to_string(m->header->type), + strna(m->path), strna(m->interface), strna(m->member), strna(m->sender), strna(m->destination)); return 1; } |