From: Kevin Day Date: Fri, 24 Feb 2023 02:14:39 +0000 (-0600) Subject: Cleanup: Consistently apply verbosity to error message with fallback. X-Git-Tag: 0.6.4~36 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=4d7d66565a555baf9d7df72255c1063bc8858072;p=fll Cleanup: Consistently apply verbosity to error message with fallback. The fallback error message is an automatically recovered error. Only print the error message in verbose mode or greater. This behavior is followed elsewhere and so this change makes the design more consistent. --- diff --git a/level_3/fake/c/private-build-load.c b/level_3/fake/c/private-build-load.c index 410a551..816796f 100644 --- a/level_3/fake/c/private-build-load.c +++ b/level_3/fake/c/private-build-load.c @@ -1392,7 +1392,7 @@ extern "C" { setting->search_shared = F_false; } - if (data->main->error.verbosity != f_console_verbosity_quiet_e) { + if (data->main->error.verbosity >= f_console_verbosity_verbose_e) { flockfile(data->main->error.to.stream); fl_print_format("%r%[%QThe parameters '%]", data->main->error.to.stream, f_string_eol_s, data->main->error.context, data->main->error.prefix, data->main->error.context);