summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2007-04-11 17:07:17 +0000
committerJoshua Colp <jcolp@digium.com>2007-04-11 17:07:17 +0000
commit6fc5c73f78be23df3b5660e2b60047ff8d299b98 (patch)
tree0226497ed9534ebd0ed27b8197ef7c89a5b787a8
parent3c0b24bda8b8f31657b5cf5655f3c82ca3fe088c (diff)
Output verbose messages to the normal logger as well. (issue #9476 reported by gdalgliesh)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@61522 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--main/logger.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/main/logger.c b/main/logger.c
index ce40cf767..e842c77bd 100644
--- a/main/logger.c
+++ b/main/logger.c
@@ -1010,6 +1010,8 @@ void ast_verbose(const char *fmt, ...)
strcpy(logmsg->str, buf->str);
+ ast_log(LOG_VERBOSE, logmsg->str);
+
/* Set type */
logmsg->type = LOGMSG_VERBOSE;