diff options
author | Daniel Mack <daniel@zonque.org> | 2015-10-15 17:39:14 +0200 |
---|---|---|
committer | Daniel Mack <daniel@zonque.org> | 2015-11-02 10:14:35 +0100 |
commit | 8ea823b60d0afe71c9237738d2164460da0b76e6 (patch) | |
tree | 88b29eba7fffe4deddb3d35d01f1fb9c1cedaec2 /src/core/dbus.c | |
parent | 4b1728250d75de4851bdbf4d62d3cf85f9abda60 (diff) |
core: be more verbose when NameOwnerChanged subscriptions fail
Diffstat (limited to 'src/core/dbus.c')
-rw-r--r-- | src/core/dbus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/dbus.c b/src/core/dbus.c index 834745aeb5..6c44b28adf 100644 --- a/src/core/dbus.c +++ b/src/core/dbus.c @@ -784,7 +784,7 @@ static int bus_setup_api(Manager *m, sd_bus *bus) { HASHMAP_FOREACH_KEY(u, name, m->watch_bus, i) { r = unit_install_bus_match(u, bus, name); if (r < 0) - log_error_errno(r, "Failed to subscribe to NameOwnerChanged signal: %m"); + log_error_errno(r, "Failed to subscribe to NameOwnerChanged signal for '%s': %m", name); } r = sd_bus_add_match( |