summaryrefslogtreecommitdiff
path: root/main/astmm.c
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2008-02-05 23:00:15 +0000
committerMark Michelson <mmichelson@digium.com>2008-02-05 23:00:15 +0000
commitfe9821cc1066c5233eda63b5d747096f41e8a24c (patch)
tree5c9c08fb9ce70cd29aa48d1b901718df97e63dac /main/astmm.c
parentbb156b5cb5d761722327d293b6d28d8e913bb9fa (diff)
Get rid of any remaining ast_verbose calls in the code in favor of
ast_verb (closes issue #11934) Reported by: mvanbaak Patches: 20080205_astverb-2.diff.txt uploaded by mvanbaak (license 7) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@102525 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/astmm.c')
-rw-r--r--main/astmm.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/main/astmm.c b/main/astmm.c
index 69c124fbe..f14ab8bdc 100644
--- a/main/astmm.c
+++ b/main/astmm.c
@@ -467,8 +467,7 @@ void __ast_mm_init(void)
snprintf(filename, sizeof(filename), "%s/mmlog", ast_config_AST_LOG_DIR);
- if (option_verbose)
- ast_verbose("Asterisk Malloc Debugger Started (see %s))\n", filename);
+ ast_verb(1, "Asterisk Malloc Debugger Started (see %s))\n", filename);
if ((mmlog = fopen(filename, "a+"))) {
fprintf(mmlog, "%ld - New session\n", (long)time(NULL));