aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-09-09 12:34:45 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-09-09 12:34:45 +0000
commit61d5dba6577a3f49da0f1ebd60dc9db656b5a7b5 (patch)
treed86a30a6e62ea75806965367e095003658c160f9 /apps
parentfd94aeaf01aa591674e721aed6c98166947d2561 (diff)
Merged revisions 141998 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r141998 | mmichelson | 2008-09-09 07:32:38 -0500 (Tue, 09 Sep 2008) | 7 lines Use ast_debug for debug messages. I was wondering why debug messages weren't showing up when I had set the debug level high for just app_queue.c. It's because we were only checking the global option_debug variable instead of using the awesome macro which checks both the global and file-specific value ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.1@142001 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_queue.c18
1 files changed, 6 insertions, 12 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index a71e484a7..283481b13 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -781,14 +781,12 @@ static int handle_statechange(void *datap)
AST_LIST_UNLOCK(&interfaces);
if (!curint) {
- if (option_debug > 2)
- ast_log(LOG_DEBUG, "Device '%s/%s' changed to state '%d' (%s) but we don't care because they're not a member of any queue.\n", technology, loc, sc->state, devstate2str(sc->state));
+ ast_debug(3, "Device '%s/%s' changed to state '%d' (%s) but we don't care because they're not a member of any queue.\n", technology, loc, sc->state, devstate2str(sc->state));
ast_free(sc);
return 0;
}
- if (option_debug)
- ast_log(LOG_DEBUG, "Device '%s/%s' changed to state '%d' (%s)\n", technology, loc, sc->state, devstate2str(sc->state));
+ ast_debug(1, "Device '%s/%s' changed to state '%d' (%s)\n", technology, loc, sc->state, devstate2str(sc->state));
update_status(sc->dev, sc->state);
ast_free(sc);
@@ -2319,8 +2317,7 @@ static int ring_one(struct queue_ent *qe, struct callattempt *outgoing, int *bus
/* If we have timed out, break out */
if (qe->expire && (time(NULL) >= qe->expire)) {
- if (option_debug)
- ast_log(LOG_DEBUG, "Queue timed out while ringing members.\n");
+ ast_debug(1, "Queue timed out while ringing members.\n");
ret = 0;
break;
}
@@ -3362,7 +3359,7 @@ static int try_calling(struct queue_ent *qe, const char *options, char *announce
AST_LIST_LOCK(dialed_interfaces);
AST_LIST_TRAVERSE(dialed_interfaces, di, list) {
if (!strcasecmp(cur->interface, di->interface)) {
- ast_log(LOG_DEBUG, "Skipping dialing interface '%s' since it has already been dialed\n",
+ ast_debug(1, "Skipping dialing interface '%s' since it has already been dialed\n",
di->interface);
break;
}
@@ -3764,8 +3761,7 @@ static int try_calling(struct queue_ent *qe, const char *options, char *announce
}
if (!ast_strlen_zero(gosubexec)) {
- if (option_debug)
- ast_log(LOG_DEBUG, "app_queue: gosub=%s.\n", gosubexec);
+ ast_debug(1, "app_queue: gosub=%s.\n", gosubexec);
res = ast_autoservice_start(qe->chan);
if (res) {
@@ -3795,8 +3791,7 @@ static int try_calling(struct queue_ent *qe, const char *options, char *announce
res = pbx_exec(qe->chan, application, gosub_args);
ast_pbx_run(qe->chan);
free(gosub_args);
- if (option_debug)
- ast_log(LOG_DEBUG, "Gosub exited with status %d\n", res);
+ ast_debug(1, "Gosub exited with status %d\n", res);
} else
ast_log(LOG_ERROR, "Could not Allocate string for Gosub arguments -- Gosub Call Aborted!\n");
@@ -6358,7 +6353,6 @@ static char *complete_queue_rule_show(const char *line, const char *word, int po
int wordlen = strlen(word);
char *ret = NULL;
if (pos != 3) /* Wha? */ {
- ast_log(LOG_DEBUG, "Hitting this???, pos is %d\n", pos);
return NULL;
}