warning static method

void warning(
  1. String message
)

Logs a warning message.

Use for potential issues that don't prevent the application from working.

Implementation

static void warning(String message) {
  _instance.log(LogLevel.warning, message);
}