diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2012-01-14 11:38:36 -0500 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2012-01-17 08:32:28 -0500 |
commit | ef479645b5e038a0e06d7d10b3c924227deafa52 (patch) | |
tree | 19557afa36e8dc45734652881b92609b33e6bd63 | |
parent | d400dd9d1bb97984335aaeea200caf50b45644c2 (diff) | |
download | sssd-ef479645b5e038a0e06d7d10b3c924227deafa52.tar.gz sssd-ef479645b5e038a0e06d7d10b3c924227deafa52.tar.bz2 sssd-ef479645b5e038a0e06d7d10b3c924227deafa52.zip |
Raise the debug level of two very noisy statements
-rw-r--r-- | src/providers/ipa/ipa_hbac_hosts.c | 5 | ||||
-rw-r--r-- | src/util/sss_krb5.c | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/src/providers/ipa/ipa_hbac_hosts.c b/src/providers/ipa/ipa_hbac_hosts.c index 51358f18..d672760e 100644 --- a/src/providers/ipa/ipa_hbac_hosts.c +++ b/src/providers/ipa/ipa_hbac_hosts.c @@ -619,8 +619,9 @@ static errno_t hbac_host_attrs_to_rule(TALLOC_CTX *mem_ctx, num_hostgroups++; } else { /* ret == ENOENT */ /* Neither a host nor a hostgroup? Skip it */ - DEBUG(1, ("[%s] does not map to either a host or hostgroup. " - "Skipping\n", member_dn)); + DEBUG(SSSDBG_TRACE_LIBS, + ("[%s] does not map to either a host or hostgroup. " + "Skipping\n", member_dn)); } } talloc_zfree(member_dn); diff --git a/src/util/sss_krb5.c b/src/util/sss_krb5.c index fe76afc5..0031d240 100644 --- a/src/util/sss_krb5.c +++ b/src/util/sss_krb5.c @@ -489,8 +489,9 @@ krb5_error_code find_principal_in_keytab(krb5_context ctx, if (!principal_found) { kerr = KRB5_KT_NOTFOUND; - DEBUG(1, ("No principal matching %s@%s found in keytab.\n", - pattern_primary, pattern_realm)); + DEBUG(SSSDBG_MINOR_FAILURE, + ("No principal matching %s@%s found in keytab.\n", + pattern_primary, pattern_realm)); goto done; } |