Log a warning message.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(watch_opts_t), | intent(in) | :: | w | |||
| character(len=*), | intent(in) | :: | msg |
subroutine log_warn(w, msg) type(watch_opts_t), intent(in) :: w character(len=*), intent(in) :: msg if (w%verbosity < 0) return write(output_unit,'(a)') & colorize("warn |", color_fg='yellow_intense', style='bold_on') // " " // trim(msg) end subroutine log_warn