From e131fef2d3f40bce5af85613690df8aa15f90fde Mon Sep 17 00:00:00 2001 From: Petr Cech Date: Dec 14 2015 12:46:20 +0000 Subject: KRB5_CHILD: Debug logs for PAC timeout This patch adds debug message that inform user when KRB5_CHILD calls PAC responder. This action might take a bit of time in case the cache is not populated or up to date. Resolves: https://fedorahosted.org/sssd/ticket/2846 Reviewed-by: Jakub Hrozek Reviewed-by: Lukáš Slebodník --- diff --git a/src/providers/krb5/krb5_child.c b/src/providers/krb5/krb5_child.c index b39269e..c8b8a00 100644 --- a/src/providers/krb5/krb5_child.c +++ b/src/providers/krb5/krb5_child.c @@ -193,6 +193,9 @@ static errno_t sss_send_pac(krb5_authdata **pac_authdata) ret, errnop); return EIO; } + DEBUG(SSSDBG_TRACE_FUNC, + "PAC responder contacted. It might take a bit of time in case the " + "cache is not up to date.\n"); return EOK; }