infoLazy static method

void infoLazy(
  1. String builder()
)

Implementation

static void infoLazy(String Function() builder) {
  if (!_shouldLog(D4LogLevel.info)) return;
  log(builder(), level: D4LogLevel.info);
}