Skip to content
Snippets Groups Projects
Commit 562d0b4d authored by David M. Lee's avatar David M. Lee
Browse files

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
parent b3e3dfa5
Branches
Tags
No related merge requests found
...@@ -842,6 +842,9 @@ static enum ast_module_load_result start_resource(struct ast_module *mod) ...@@ -842,6 +842,9 @@ static enum ast_module_load_result start_resource(struct ast_module *mod)
return AST_MODULE_LOAD_FAILURE; return AST_MODULE_LOAD_FAILURE;
} }
if (!ast_fully_booted) {
ast_verb(1, "Loading %s.\n", mod->resource);
}
res = mod->info->load(); res = mod->info->load();
switch (res) { switch (res) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment