log_info Subroutine

public subroutine log_info(w, msg)

Log an informational message.

Arguments

Type IntentOptional Attributes Name
type(watch_opts_t), intent(in) :: w
character(len=*), intent(in) :: msg

Calls

proc~~log_info~~CallsGraph proc~log_info log_info colorize colorize proc~log_info->colorize

Called by

proc~~log_info~~CalledByGraph proc~log_info log_info proc~compute_watch_files_from_settings compute_watch_files_from_settings proc~compute_watch_files_from_settings->proc~log_info proc~handle_manifest_change handle_manifest_change proc~handle_manifest_change->proc~log_info proc~rebuild_watch_list rebuild_watch_list proc~handle_manifest_change->proc~rebuild_watch_list proc~rebuild_watch_list->proc~log_info proc~rebuild_watch_list->proc~compute_watch_files_from_settings proc~stats_init stats_feature_t%stats_init proc~stats_init->proc~log_info proc~watcher_run watcher_t%watcher_run proc~watcher_run->proc~log_info proc~watcher_run->proc~handle_manifest_change proc~watcher_run->proc~rebuild_watch_list proc~watcher_init watcher_t%watcher_init proc~watcher_init->proc~rebuild_watch_list

Source Code

   subroutine log_info(w, msg)
      type(watch_opts_t), intent(in) :: w
      character(len=*), intent(in)   :: msg
      if (w%verbosity < 0) return
      write(output_unit,'(a)') &
         colorize("info       |", color_fg='blue_intense', style='bold_on') // "  " // trim(msg)
   end subroutine log_info