Only print PRI messages when in verbose mode (bug #1732)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3099 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer
2004-05-27 22:38:13 +00:00
parent ff2ba012d2
commit 5b53760717

View File

@@ -6166,7 +6166,8 @@ static void *do_idle_thread(void *vchan)
static void zt_pri_message(char *s)
{
ast_verbose(s);
if (option_verbose)
ast_verbose(s);
}
static void zt_pri_error(char *s)