From d94e85c2279ac255a9c964046723684ca99b7f00 Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Thu, 10 Oct 2024 15:54:57 +0200 Subject: [PATCH] stdio-bridge: Use customized log message for forwarding bus Let's more clearly indicate that we failed to set up the server which forwards messages from the remote client to the local bus instead of logging a generic bus client message. --- src/stdio-bridge/stdio-bridge.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stdio-bridge/stdio-bridge.c b/src/stdio-bridge/stdio-bridge.c index 7b774860c8e..22570511cba 100644 --- a/src/stdio-bridge/stdio-bridge.c +++ b/src/stdio-bridge/stdio-bridge.c @@ -170,7 +170,7 @@ static int run(int argc, char *argv[]) { r = sd_bus_start(b); if (r < 0) - return log_error_errno(r, "Failed to start bus client: %m"); + return log_error_errno(r, "Failed to start bus forwarding server: %m"); for (;;) { _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL; -- 2.47.3