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