From 7166156658aacbe00411af13fb56c56794a98e5d Mon Sep 17 00:00:00 2001
From: Russell Bryant <russell@russellbryant.com>
Date: Mon, 22 Dec 2008 17:44:23 +0000
Subject: [PATCH] Remove some error messages.  This is the default handler that
 is valid to use.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@166342 65c4cc65-6c06-0410-ace0-fbb531ad65f3
---
 main/astobj2.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/main/astobj2.c b/main/astobj2.c
index 9d30679223..21dc927337 100644
--- a/main/astobj2.c
+++ b/main/astobj2.c
@@ -567,7 +567,6 @@ void *_ao2_unlink(struct ao2_container *c, void *user_data)
  */ 
 static int cb_true(void *user_data, void *arg, int flags)
 {
-	ast_log(LOG_ERROR, "Using default callback (cb_true).  If you see this, something is strange!\n");
 	return CMP_MATCH;
 }
 
@@ -576,7 +575,6 @@ static int cb_true(void *user_data, void *arg, int flags)
  */
 static int cb_true_data(void *user_data, void *arg, void *data, int flags)
 {
-	ast_log(LOG_ERROR, "Using default callback (cb_true_data).  If you see this, something is strange!\n");
 	return CMP_MATCH;
 }
 
-- 
GitLab