bus: be a bit more verbose when debug mode is on

This commit is contained in:
Lennart Poettering 2013-12-25 02:13:50 +01:00
parent 33649f58af
commit 4cdf07519a
2 changed files with 10 additions and 2 deletions

View File

@ -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;
}

View File

@ -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)