From 4cdf07519a9582afa9d2deeb6d9f54597b8268a1 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 25 Dec 2013 02:13:50 +0100 Subject: [PATCH] bus: be a bit more verbose when debug mode is on --- src/bus-proxyd/bus-proxyd.c | 3 +++ src/libsystemd-bus/sd-bus.c | 9 +++++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/src/bus-proxyd/bus-proxyd.c b/src/bus-proxyd/bus-proxyd.c index c4da8d6d7..abc501432 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 77690a07b..3a4821319 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) -- 2.30.2