warn method

void warn(
  1. dynamic args
)

Implementation

void warn(dynamic args) {
  if (_logLevel.index >= LogLevel.Warnings.index) {
    _print(LogLevel.Warnings, args);
  }
}