aboutsummaryrefslogtreecommitdiffstats
path: root/loader.c
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-04-02 06:27:54 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-04-02 06:27:54 +0000
commita72a36d8a84fa0fee47203018ca40227e5e3c266 (patch)
tree1d07f1987ad4c77c6266b1ef3c9680dce01b414d /loader.c
parentb9625bdb3c2f37d4dab40fc2826a777b505a9028 (diff)
Reduce debugging messages from WARNING to DEBUG
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@16922 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'loader.c')
-rw-r--r--loader.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/loader.c b/loader.c
index c3895b1ee..d467528a5 100644
--- a/loader.c
+++ b/loader.c
@@ -375,18 +375,18 @@ static int fixup(const char *caller)
/* print some debugging info for new modules */
if (m->state == MS_NEW &&
(m->cb.exported_symbols || m->cb.required_symbols))
- ast_log(LOG_WARNING,
+ ast_log(LOG_NOTICE,
"module %-30s exports %p requires %p state %s(%d)\n",
m->resource, m->cb.exported_symbols,
m->cb.required_symbols,
st_name(m->state), m->state);
}
- ast_log(LOG_WARNING, "---- fixup (%s): %d modules, %d new ---\n",
+ ast_log(LOG_DEBUG, "---- fixup (%s): %d modules, %d new ---\n",
caller, total, new);
for (;;cycle++) {
int again = 0; /* set if we need another round */
- ast_log(LOG_WARNING, "---- fixup: cycle %d ---\n", cycle);
+ ast_log(LOG_DEBUG, "---- fixup: cycle %d ---\n", cycle);
AST_LIST_TRAVERSE(&module_list, m, next) {
if (resolve(m))
again = 1; /* something changed */
@@ -417,7 +417,7 @@ static int fixup(const char *caller)
if (!again) /* we are done */
break;
}
- ast_log(LOG_WARNING, "---- fixup complete ---\n");
+ ast_log(LOG_DEBUG, "---- fixup complete ---\n");
in_fixup--;
return 0;
}