[systemd-commits] src/bus-proxyd src/libsystemd-bus
Lennart Poettering
lennart at kemper.freedesktop.org
Tue Dec 24 17:57:27 PST 2013
src/bus-proxyd/bus-proxyd.c | 3 +++
src/libsystemd-bus/sd-bus.c | 9 +++++++--
2 files changed, 10 insertions(+), 2 deletions(-)
New commits:
commit 4cdf07519a9582afa9d2deeb6d9f54597b8268a1
Author: Lennart Poettering <lennart at poettering.net>
Date: Wed Dec 25 02:13:50 2013 +0100
bus: be a bit more verbose when debug mode is on
diff --git a/src/bus-proxyd/bus-proxyd.c b/src/bus-proxyd/bus-proxyd.c
index c4da8d6..abc5014 100644
--- a/src/bus-proxyd/bus-proxyd.c
+++ b/src/bus-proxyd/bus-proxyd.c
@@ -182,6 +182,9 @@ static int rename_service(sd_bus *b) {
memset(arg_command_line_buffer + w, 0, m - w);
}
+ log_debug("Running on behalf of PID %lu (%s), UID %lu (%s).",
+ (unsigned long) pid, p,
+ (unsigned long) uid, name);
return 0;
}
diff --git a/src/libsystemd-bus/sd-bus.c b/src/libsystemd-bus/sd-bus.c
index 77690a0..3a48213 100644
--- a/src/libsystemd-bus/sd-bus.c
+++ b/src/libsystemd-bus/sd-bus.c
@@ -2103,11 +2103,16 @@ static int process_message(sd_bus *bus, sd_bus_message *m) {
bus->current = m;
bus->iteration_counter++;
- log_debug("Got message sender=%s object=%s interface=%s member=%s",
+ log_debug("Got message type=%s sender=%s destination=%s object=%s interface=%s member=%s serial=%lu reply_serial=%lu error=%s",
+ bus_message_type_to_string(m->header->type),
strna(sd_bus_message_get_sender(m)),
+ strna(sd_bus_message_get_destination(m)),
strna(sd_bus_message_get_path(m)),
strna(sd_bus_message_get_interface(m)),
- strna(sd_bus_message_get_member(m)));
+ strna(sd_bus_message_get_member(m)),
+ (unsigned long) m->header->serial,
+ (unsigned long) m->reply_serial,
+ strna(m->error.message));
r = process_hello(bus, m);
if (r != 0)
More information about the systemd-commits
mailing list