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