diff --git a/apps/app_dumpchan.c b/apps/app_dumpchan.c
index 17948af9a6c7235ce8435adfb30841f35f0ea478..37e040e9b32d0966cc1d335bd2d27bce1c0b6c75 100644
--- a/apps/app_dumpchan.c
+++ b/apps/app_dumpchan.c
@@ -141,8 +141,8 @@ static int dumpchan_exec(struct ast_channel *chan, void *data)
 
 	pbx_builtin_serialize_variables(chan, &vars);
 	serialize_showchan(chan, info, sizeof(info));
-	if (level > 0)
-		ast_verb(level, "\nDumping Info For Channel: %s:\n%s\nInfo:\n%s\nVariables:\n%s%s\n", chan->name, line, info, vars->str, line);
+	if (option_verbose >= level)
+		ast_verbose("\nDumping Info For Channel: %s:\n%s\nInfo:\n%s\nVariables:\n%s%s\n", chan->name, line, info, vars->str, line);
 
 	return 0;
 }
diff --git a/apps/app_zapras.c b/apps/app_zapras.c
index 31f208d2245d2411d7888bdb516e7111f7f2aae4..231a9f2a64ee764b21693ee9f32106824badfc24 100644
--- a/apps/app_zapras.c
+++ b/apps/app_zapras.c
@@ -165,13 +165,14 @@ static void run_ras(struct ast_channel *chan, char *args)
 			if (res < 0) {
 				ast_log(LOG_WARNING, "wait4 returned %d: %s\n", res, strerror(errno));
 			}
-			if (WIFEXITED(status))
+			if (WIFEXITED(status)) {
 				ast_verb(3, "RAS on %s terminated with status %d\n", chan->name, WEXITSTATUS(status));
-			else if (WIFSIGNALED(status))
-				ast_verb(3, "RAS on %s terminated with signal %d\n", chan->name, WTERMSIG(status));
-			else
-				ast_verbose(VERBOSE_PREFIX_3 "RAS on %s terminated weirdly.\n", chan->name);
-
+			} else if (WIFSIGNALED(status)) {
+				ast_verb(3, "RAS on %s terminated with signal %d\n", 
+					 chan->name, WTERMSIG(status));
+			} else {
+				ast_verb(3, "RAS on %s terminated weirdly.\n", chan->name);
+			}
 			/* Throw back into audio mode */
 			x = 1;
 			ioctl(chan->fds[0], ZT_AUDIOMODE, &x);
diff --git a/main/loader.c b/main/loader.c
index d34da9f7d323f212b580e83c09c948b6cb258fea..e05bac4e363a04d6a22489f349e9ead8f9fc16c4 100644
--- a/main/loader.c
+++ b/main/loader.c
@@ -699,8 +699,8 @@ static enum ast_module_load_result load_resource(const char *resource_name, unsi
 	case AST_MODULE_LOAD_SUCCESS:
 		if (!ast_fully_booted) {
 			ast_verb(1, "%s => (%s)\n", resource_name, term_color(tmp, mod->info->description, COLOR_BROWN, COLOR_BLACK, sizeof(tmp)));
-			if (ast_opt_console)
-				ast_verb(0, ".");
+			if (ast_opt_console && !option_verbose)
+				ast_verbose( ".");
 		} else {
 			ast_verb(1, "Loaded %s => (%s)\n", resource_name, mod->info->description);
 		}