mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-21 01:01:02 +00:00
Remove the few places where we try to ast_verbose() without a newline.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@346655 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -797,8 +797,11 @@ static enum ast_module_load_result start_resource(struct ast_module *mod)
|
||||
case AST_MODULE_LOAD_SUCCESS:
|
||||
if (!ast_fully_booted) {
|
||||
ast_verb(1, "%s => (%s)\n", mod->resource, term_color(tmp, mod->info->description, COLOR_BROWN, COLOR_BLACK, sizeof(tmp)));
|
||||
if (ast_opt_console && !option_verbose)
|
||||
ast_verbose( ".");
|
||||
if (ast_opt_console && !option_verbose) {
|
||||
/* This never looks good on anything but the root console, so
|
||||
* it's best not to try to funnel it through the logger. */
|
||||
fprintf(stdout, ".");
|
||||
}
|
||||
} else {
|
||||
ast_verb(1, "Loaded %s => (%s)\n", mod->resource, mod->info->description);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user