summaryrefslogtreecommitdiffstats
path: root/src/providers/krb5/krb5_common.c
diff options
context:
space:
mode:
authorStef Walter <stefw@gnome.org>2012-04-10 11:06:56 +0200
committerStephen Gallagher <sgallagh@redhat.com>2012-06-20 07:41:04 -0400
commit387349ae092f6dbeb8e4bca291a772695836629c (patch)
tree2ea9b60028f73a61923df5bd0bcf96454b42471d /src/providers/krb5/krb5_common.c
parent8e1d9a326a6cf88405344077a309cbe3898653c9 (diff)
downloadsssd-387349ae092f6dbeb8e4bca291a772695836629c.tar.gz
sssd-387349ae092f6dbeb8e4bca291a772695836629c.tar.xz
sssd-387349ae092f6dbeb8e4bca291a772695836629c.zip
Move some debug lines to new debug log levels
* These are common lines of debug output when starting up sssd https://bugzilla.redhat.com/show_bug.cgi?id=811113
Diffstat (limited to 'src/providers/krb5/krb5_common.c')
-rw-r--r--src/providers/krb5/krb5_common.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/providers/krb5/krb5_common.c b/src/providers/krb5/krb5_common.c
index ee35b522e..d7586aa50 100644
--- a/src/providers/krb5/krb5_common.c
+++ b/src/providers/krb5/krb5_common.c
@@ -166,13 +166,13 @@ errno_t check_and_export_options(struct dp_option *opts,
dummy = dp_opt_get_cstring(opts, KRB5_KDC);
if (dummy == NULL) {
- DEBUG(1, ("No KDC explicitly configured, using defaults.\n"));
+ DEBUG(SSSDBG_CONF_SETTINGS, ("No KDC explicitly configured, using defaults.\n"));
}
dummy = dp_opt_get_cstring(opts, KRB5_KPASSWD);
if (dummy == NULL) {
- DEBUG(1, ("No kpasswd server explicitly configured, "
- "using the KDC or defaults.\n"));
+ DEBUG(SSSDBG_CONF_SETTINGS, ("No kpasswd server explicitly configured, "
+ "using the KDC or defaults.\n"));
}
dummy = dp_opt_get_cstring(opts, KRB5_CCNAME_TMPL);