i static method
Implementation
static void i(List<LogCategory> categories, String message) {
if (_shouldLogAny(categories, LogLevel.info)) {
final categoryNames = categories.map((c) => c.name).join('|');
debugPrint('💙 [I][$categoryNames] $message');
}
}