logInfo method

void logInfo(
  1. LogCategory category,
  2. String message
)

Log an informational message.

SDL Docs

Implementation

void logInfo(final LogCategory category, final String message) =>
    _log(category, message, sdl.SDL_LogInfo);