From 8bd73ec01b4becb15b94eb27edff3e1f17b6015f Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Tue, 16 Jan 2007 19:01:42 +0000 Subject: [PATCH] remove pointless DEBUG message (watch those patch merges, people!) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@51155 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_voicemail.c | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index 5c07688994..6cb47e7451 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -678,7 +678,6 @@ static void apply_options_full(struct ast_vm_user *retval, struct ast_variable * struct ast_variable *tmp; tmp = var; while (tmp) { - ast_log(LOG_DEBUG, "Name: %s Value: %s\n", tmp->name, tmp->value); if (!strcasecmp(tmp->name, "password") || !strcasecmp(tmp->name, "secret")) { ast_copy_string(retval->password, tmp->value, sizeof(retval->password)); } else if (!strcasecmp(tmp->name, "secret")) {