summaryrefslogtreecommitdiffstats
path: root/src/providers/fail_over.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/fail_over.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/fail_over.c')
-rw-r--r--src/providers/fail_over.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/providers/fail_over.c b/src/providers/fail_over.c
index deb7d394c..5ef1436de 100644
--- a/src/providers/fail_over.c
+++ b/src/providers/fail_over.c
@@ -143,8 +143,8 @@ fo_context_init(TALLOC_CTX *mem_ctx, struct fo_options *opts)
ctx->opts->family_order = opts->family_order;
ctx->opts->service_resolv_timeout = opts->service_resolv_timeout;
- DEBUG(3, ("Created new fail over context, retry timeout is %d\n",
- ctx->opts->retry_timeout));
+ DEBUG(SSSDBG_TRACE_FUNC, ("Created new fail over context, retry timeout is %d\n",
+ ctx->opts->retry_timeout));
return ctx;
}
@@ -397,7 +397,7 @@ fo_new_service(struct fo_ctx *ctx, const char *name,
struct fo_service *service;
int ret;
- DEBUG(3, ("Creating new service '%s'\n", name));
+ DEBUG(SSSDBG_TRACE_FUNC, ("Creating new service '%s'\n", name));
ret = fo_get_service(ctx, name, &service);
if (ret == EOK) {
DEBUG(5, ("Service '%s' already exists\n", name));
@@ -514,9 +514,9 @@ fo_add_srv_server(struct fo_service *service, const char *srv,
{
struct fo_server *server;
- DEBUG(3, ("Adding new SRV server in domain '%s', to service '%s' using %s\n",
- discovery_domain ? discovery_domain : "unknown",
- service->name, proto));
+ DEBUG(SSSDBG_TRACE_FUNC, ("Adding new SRV server in domain '%s', to service '%s' using %s\n",
+ discovery_domain ? discovery_domain : "unknown",
+ service->name, proto));
DLIST_FOR_EACH(server, service->server_list) {
if (server->user_data != user_data)