diff --git a/channels/chan_misdn.c b/channels/chan_misdn.c index 85edd8e60a..29274e743a 100644 --- a/channels/chan_misdn.c +++ b/channels/chan_misdn.c @@ -12770,8 +12770,7 @@ static void chan_misdn_log(int level, int port, char *tmpl, ...) } else if (misdn_debug_only[port] ? (level == 1 && misdn_debug[port]) || level == misdn_debug[port] : level <= misdn_debug[port]) { - ast_console_puts(port_buf); - ast_console_puts(buf); + ast_verbose("%s%s", port_buf, buf); } if (level <= misdn_debug[0] && !ast_strlen_zero(global_tracefile)) { @@ -12783,12 +12782,7 @@ static void chan_misdn_log(int level, int port, char *tmpl, ...) fp = fopen(global_tracefile, "a+"); if (!fp) { - ast_console_puts("Error opening Tracefile: [ "); - ast_console_puts(global_tracefile); - ast_console_puts(" ] "); - - ast_console_puts(strerror(errno)); - ast_console_puts("\n"); + ast_verbose("Error opening Tracefile: [ %s ] %s\n", global_tracefile, strerror(errno)); return; }