warning method

void warning(
  1. String message,
  2. String scope
)

Logs a warning message. message is the log message. scope is the scope or context of the log.

Implementation

void warning(String message, String scope) {
  log(Level.WARNING, message, scope, null, null, formatter);
}