aboutsummaryrefslogtreecommitdiffstats
path: root/pbx/pbx_wilcalu.c
diff options
context:
space:
mode:
Diffstat (limited to 'pbx/pbx_wilcalu.c')
-rwxr-xr-xpbx/pbx_wilcalu.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/pbx/pbx_wilcalu.c b/pbx/pbx_wilcalu.c
index aa1d4e9ae..9fdf642be 100755
--- a/pbx/pbx_wilcalu.c
+++ b/pbx/pbx_wilcalu.c
@@ -24,6 +24,7 @@
#include <asterisk/pbx.h>
#include <asterisk/module.h>
#include <asterisk/translate.h>
+#include <asterisk/options.h>
#include <unistd.h>
#include <string.h>
#include <stdlib.h>
@@ -62,7 +63,8 @@ static void *autodial(void *ignore)
int flags = fcntl(fd, F_GETFL);
fd_set fds;
fcntl(fd, F_SETFL, flags & ~O_NONBLOCK);
- ast_log(LOG_DEBUG, "Entered Wil-Calu fd=%d\n",fd);
+ if (option_debug)
+ ast_log(LOG_DEBUG, "Entered Wil-Calu fd=%d\n",fd);
if(fd<0) {
ast_log(LOG_WARNING, "Autodial: Unable to open file\n");
pthread_exit(NULL);