logInfo static method

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

Log a general reactive system message

Implementation

static void logInfo(String message, {String? context}) {
  if (!ZenLogLevel.info.shouldLog(ZenConfig.logLevel)) return;

  final prefix = context != null ? 'Rx$context' : 'Rx';
  ZenLogger.logInfo('$prefix: $message');
}