player static method
Log player events (info level)
Implementation
static void player(String message, [String? tag]) {
if (_level >= LogLevel.info) {
final prefix = tag != null ? '[$tag] ' : '';
debugPrint('📋 PLAYER: $prefix$message');
}
}