summaryrefslogtreecommitdiff
path: root/loader.c
diff options
context:
space:
mode:
authorLuigi Rizzo <rizzo@icir.org>2006-05-11 15:51:43 +0000
committerLuigi Rizzo <rizzo@icir.org>2006-05-11 15:51:43 +0000
commit46a9459d572f9d0a7064e09ccce92b98219af1f7 (patch)
treea5a8d9b90fe51f24f1422c4715b317ee636ba7c1 /loader.c
parent1f0d723c1e997d407b72e648d36385489d30b738 (diff)
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
Diffstat (limited to 'loader.c')
-rw-r--r--loader.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/loader.c b/loader.c
index c09673d69..0d217b965 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 {