static void logInfo(String message, {bool loggerEnabled = true}) { if (!loggerEnabled) { return; } _logger.info(message); }