stats_init Subroutine

private subroutine stats_init(self, cfg)

Initialize the stats feature.

Currently logs a single "feature enabled" message.

Type Bound

stats_feature_t

Arguments

Type IntentOptional Attributes Name
class(stats_feature_t), intent(inout) :: self
type(watch_config_t), intent(in) :: cfg

Calls

proc~~stats_init~~CallsGraph proc~stats_init stats_feature_t%stats_init proc~log_info log_info proc~stats_init->proc~log_info colorize colorize proc~log_info->colorize

Source Code

   subroutine stats_init(self, cfg)
      class(stats_feature_t), intent(inout) :: self
      type(watch_config_t), intent(in) :: cfg
      call log_info(cfg%w, "feature enabled: stats")
   end subroutine stats_init