info method

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

Logs an informational message. message is the log message. scope is the scope or context of the log.

Implementation

void info(String message, String scope) {
  log(Level.INFO, message, scope, null, null, formatter);
}