w static method
Implementation
static void w(List<LogCategory> categories, String message, [dynamic error]) {
if (_shouldLogAny(categories, LogLevel.warning)) {
final categoryNames = categories.map((c) => c.name).join('|');
debugPrint('💛 [W][$categoryNames] $message');
if (error != null) debugPrint(' Details: $error');
}
}