mirror of
https://github.com/Dasharo/systemd.git
synced 2026-03-06 15:02:31 -08:00
core: be more verbose when NameOwnerChanged subscriptions fail
This commit is contained in:
@@ -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(
|
||||
|
||||
@@ -2511,7 +2511,7 @@ int unit_watch_bus_name(Unit *u, const char *name) {
|
||||
* Otherwise, just put the name in the list. bus_setup_api() will take care later. */
|
||||
r = unit_install_bus_match(u, u->manager->api_bus, name);
|
||||
if (r < 0)
|
||||
return log_warning_errno(r, "Failed to subscribe to NameOwnerChanged signal: %m");
|
||||
return log_warning_errno(r, "Failed to subscribe to NameOwnerChanged signal for '%s': %m", name);
|
||||
}
|
||||
|
||||
r = hashmap_put(u->manager->watch_bus, name, u);
|
||||
|
||||
Reference in New Issue
Block a user