debug static method

dynamic debug(
  1. String msg
)

Implementation

static debug(String msg) {
  if (isDebugEnabled()) {
    logger.log(LogLevel.Debug, msg);
  }
}