By popular demand, putting the about-to-load-module printf back.

But now it only prints during the initial startup, and prints at verbose 1
level.


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@386684 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
David M. Lee
2013-04-26 21:31:39 +00:00
parent b3e3dfa51c
commit 562d0b4d18

View File

@@ -842,6 +842,9 @@ static enum ast_module_load_result start_resource(struct ast_module *mod)
return AST_MODULE_LOAD_FAILURE;
}
if (!ast_fully_booted) {
ast_verb(1, "Loading %s.\n", mod->resource);
}
res = mod->info->load();
switch (res) {