From 46a9459d572f9d0a7064e09ccce92b98219af1f7 Mon Sep 17 00:00:00 2001 From: Luigi Rizzo Date: Thu, 11 May 2006 15:51:43 +0000 Subject: [PATCH] remove a now useless debugging message about loading new-style modules. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@26955 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- loader.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/loader.c b/loader.c index c09673d692..0d217b965a 100644 --- a/loader.c +++ b/loader.c @@ -722,8 +722,6 @@ static struct module * __load_resource(const char *resource_name, if (m == NULL) /* MOD_0 modules may still have a mod_data entry */ m = find_symbol(cur, "mod_data", 0); if (m != NULL) { /* new style module */ - ast_log(LOG_WARNING, "new style %s (0x%x) loaded RTLD_LOCAL\n", - resource_name, m->flags); cur->cb = m; /* use the mod_data from the module itself */ errors = check_exported(cur); } else {