logDebug static method

void logDebug(
  1. String message, {
  2. String? context,
})

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');
}