parquet_emit_info Subroutine

public subroutine parquet_emit_info(text)

Emits one informational remark -- something worth mentioning that is not a warning about the data. Suppressed from "silent" downward.

The library has exactly one of these today (the development-build notice in parquet_get_version). It has its own channel rather than a special case inside parquet_emit_warning because it is the one message whose suppression level differs, and a hard-coded exception there would have to be re-explained every time someone read the suppression logic.

Arguments

Type IntentOptional Attributes Name
character(len=*), intent(in) :: text

the message, with no prefix.


Source Code

    subroutine parquet_emit_info(text)
        character(len=*), intent(in) :: text !! the message, with no prefix.

        if (cfg_verbosity >= verb_silent) return
        write (message_unit(), '(a)') text
    end subroutine parquet_emit_info