summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2012-01-14 11:38:36 -0500
committerStephen Gallagher <sgallagh@redhat.com>2012-01-17 08:32:28 -0500
commitef479645b5e038a0e06d7d10b3c924227deafa52 (patch)
tree19557afa36e8dc45734652881b92609b33e6bd63 /src
parentd400dd9d1bb97984335aaeea200caf50b45644c2 (diff)
downloadsssd-ef479645b5e038a0e06d7d10b3c924227deafa52.tar.gz
sssd-ef479645b5e038a0e06d7d10b3c924227deafa52.tar.xz
sssd-ef479645b5e038a0e06d7d10b3c924227deafa52.zip
Raise the debug level of two very noisy statements
Diffstat (limited to 'src')
-rw-r--r--src/providers/ipa/ipa_hbac_hosts.c5
-rw-r--r--src/util/sss_krb5.c5
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 51358f18f..d672760e9 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 fe76afc52..0031d2401 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;
}