From f4fc2c3fc98bcb40590a736625f4fe58595e000f Mon Sep 17 00:00:00 2001 From: Mike Yuan Date: Sat, 20 Sep 2025 00:42:12 +0200 Subject: [PATCH] core/exec-credential: log about errno --- src/core/exec-credential.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/exec-credential.c b/src/core/exec-credential.c index b0cc9ad068..c890a2c48a 100644 --- a/src/core/exec-credential.c +++ b/src/core/exec-credential.c @@ -520,7 +520,7 @@ static int maybe_decrypt_and_write_credential( } if (r < 0) { if (graceful) { - log_warning_errno(r, "Unable to decrypt credential '%s', skipping.", id); + log_warning_errno(r, "Unable to decrypt credential '%s', skipping: %m", id); return 0; }