From 5372571fde68dcc7ccd0d3fa754bdfa148e7ca48 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 4 Mar 2013 12:52:26 +0100 Subject: [PATCH] s3:idmap: fix a debug message and lower its level It is not an error to be logged at level 1 when a domain has no explicitly configured idmap backend. Signed-off-by: Michael Adam Reviewed-by: Andrew Bartlett Autobuild-User(master): Andrew Bartlett Autobuild-Date(master): Fri Mar 8 03:16:54 CET 2013 on sn-devel-104 --- source3/winbindd/idmap.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source3/winbindd/idmap.c b/source3/winbindd/idmap.c index d5eeac659cc..97a34d4bddb 100644 --- a/source3/winbindd/idmap.c +++ b/source3/winbindd/idmap.c @@ -285,7 +285,8 @@ static struct idmap_domain *idmap_init_named_domain(TALLOC_CTX *mem_ctx, backend = lp_parm_const_string(-1, config_option, "backend", NULL); if (backend == NULL) { - DEBUG(1, ("no backend defined for %s\n", config_option)); + DEBUG(10, ("no idmap backend configured for domain '%s'\n", + domname)); goto fail; } -- 2.11.4.GIT