]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
restore printing of module name during loading
authorKevin P. Fleming <kpfleming@digium.com>
Mon, 21 Aug 2006 19:56:30 +0000 (19:56 +0000)
committerKevin P. Fleming <kpfleming@digium.com>
Mon, 21 Aug 2006 19:56:30 +0000 (19:56 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@40784 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/loader.c

index 27a6c9b60b1c092be1a319a4a4674d2421403c9b..518b45247b07197d0e0a18ab59e19116392f958e 100644 (file)
@@ -607,7 +607,7 @@ static enum ast_module_load_result load_resource(const char *resource_name, unsi
        case AST_MODULE_LOAD_SUCCESS:
                if (!ast_fully_booted) {
                        if (option_verbose) 
-                               ast_verbose( " => (%s)\n", term_color(tmp, mod->info->description, COLOR_BROWN, COLOR_BLACK, sizeof(tmp)));
+                               ast_verbose("%s => (%s)\n", resource_name, term_color(tmp, mod->info->description, COLOR_BROWN, COLOR_BLACK, sizeof(tmp)));
                        if (ast_opt_console && !option_verbose)
                                ast_verbose( ".");
                } else {