]> Kevux Git Server - fll/commitdiff
Bugfix: "State is now ..." should not be printed when quiet is passed.
authorKevin Day <thekevinday@gmail.com>
Sun, 10 Jul 2022 04:52:15 +0000 (23:52 -0500)
committerKevin Day <thekevinday@gmail.com>
Sun, 10 Jul 2022 04:52:43 +0000 (23:52 -0500)
level_3/controller/c/entry/private-entry.c

index 6f9473c336d7cb8b6a92a56678bc866421b2295f..5906e14cf794a7ef6a8ccc47dd44e9620dd66948 100644 (file)
@@ -1026,7 +1026,9 @@ extern "C" {
           }
           else {
             if (!failsafe && (global->main->error.verbosity == f_console_verbosity_verbose_e || entry->show == controller_entry_show_init_e) && global->main->parameters.array[controller_parameter_simulate_e].result == f_console_result_none_e) {
-              fl_print_format("%rState is now '%[%r%]'.%r", global->main->output.to.stream, f_string_eol_s, global->main->context.set.notable, controller_ready_s, global->main->context.set.notable, f_string_eol_s);
+              if (global->main->error.verbosity != f_console_verbosity_quiet_e) {
+                fl_print_format("%rState is now '%[%r%]'.%r", global->main->output.to.stream, f_string_eol_s, global->main->context.set.notable, controller_ready_s, global->main->context.set.notable, f_string_eol_s);
+              }
             }
 
             status = controller_perform_ready(global, cache, is_entry);