logDebug static method
Log debug information (only in debug mode)
Implementation
static void logDebug(String message, {String? context}) {
if (!kDebugMode || !getRxErrorConfig().logErrors) return;
final prefix = context != null ? 'Rx$context Debug' : 'RxDebug';
debugPrint('$prefix: $message');
}