logRxChange<T> static method
Log Rx value change
Implementation
static void logRxChange<T>(SwiftValue<T> rx, T oldValue, T newValue) {
if (!DebugMode.isVerboseLogging) return;
logWithContext(
'Rx value changed',
data: {'old': oldValue, 'new': newValue},
context: {'type': rx.runtimeType.toString()},
);
}