parquet_output_is_suppressed Function

public function parquet_output_is_suppressed() result(quiet)

Whether SOLICITED output -- something the caller explicitly asked to be printed, such as %print_stat or parquet_string_column%print -- should stay quiet. Distinct from the emit channels, which govern the library's own unsolicited messages.

Arguments

None

Return Value logical


Source Code

    logical function parquet_output_is_suppressed() result(quiet)
        quiet = cfg_verbosity >= verb_silent
    end function parquet_output_is_suppressed