summaryrefslogtreecommitdiff
path: root/main/adsistub.c
diff options
context:
space:
mode:
Diffstat (limited to 'main/adsistub.c')
-rw-r--r--main/adsistub.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/main/adsistub.c b/main/adsistub.c
index d92e54288..38eaa0efc 100644
--- a/main/adsistub.c
+++ b/main/adsistub.c
@@ -43,8 +43,7 @@ int (*func_name)(__VA_ARGS__) = \
#define build_stub(func_name,...) \
static int stub_##func_name(__VA_ARGS__) \
{ \
- if (option_debug > 4) \
- ast_log(LOG_DEBUG, "ADSI support not loaded!\n"); \
+ ast_debug(5, "ADSI support not loaded!\n"); \
return -1; \
} \
\