From: Olle Johansson Date: Thu, 1 Feb 2007 20:44:49 +0000 (+0000) Subject: Merged revisions 53081 via svnmerge from X-Git-Tag: 1.6.0-beta1~3^2~3302 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d07e640c6f1b088c37630490322f9e68b1683624;p=thirdparty%2Fasterisk.git Merged revisions 53081 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r53081 | oej | 2007-02-01 21:38:58 +0100 (Thu, 01 Feb 2007) | 2 lines Change debug level for state change message that is not really informative when debugging app_queue ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@53083 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_queue.c b/apps/app_queue.c index 3739feb7ae..9e922de1ca 100644 --- a/apps/app_queue.c +++ b/apps/app_queue.c @@ -564,7 +564,7 @@ static void *changethread(void *data) AST_LIST_UNLOCK(&interfaces); if (!curint) { - if (option_debug) + 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)); free(sc); return NULL;