logWarning static method
Log a warning message
Implementation
static void logWarning(String message, {String? context}) {
if (!ZenLogLevel.warning.shouldLog(ZenConfig.logLevel)) return;
final prefix = context != null ? 'Rx$context Warning' : 'RxWarning';
ZenLogger.logWarning('$prefix: $message');
}