static void logWarning(String message, {bool loggerEnabled = true}) { if (!loggerEnabled) { return; } _logger.warn(message, tag: ''); }