debug static method

dynamic debug(
  1. dynamic _
)

Implementation

static debug(_) {
  if ([CryConstant.LOGGEER_LEVEL_DEBUG].contains(CryUtils.getCryProperties().loggerProperties.level)) {
    print(_);
  }
}