From 87227038924ecce336f8605eaed034b5b22d1b7c Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Mon, 9 Apr 2018 18:48:05 +0200 Subject: [PATCH] auth-chain: drop logging in NMAuthChain when request fails For one, we already do level logging inside NMAuthManager. So, at trace level we have everything. If a request fails, it's not up to NMAuthChain to log a warning. --- src/nm-auth-utils.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/nm-auth-utils.c b/src/nm-auth-utils.c index c04dd987a0..4d268d0025 100644 --- a/src/nm-auth-utils.c +++ b/src/nm-auth-utils.c @@ -258,12 +258,6 @@ pk_call_cb (NMAuthManager *auth_manager, call->call_id = NULL; - if (error) { - /* Don't ruin the chain. Just leave the result unknown. */ - nm_log_warn (LOGD_CORE, "error requesting auth for %s: %s", - call->permission, error->message); - } - call_result = nm_auth_call_result_eval (is_authorized, is_challenge, error); nm_auth_chain_set_data (call->chain, call->permission, GUINT_TO_POINTER (call_result), NULL);