logComputedRecompute<T> static method
Log computed recomputation
Implementation
static void logComputedRecompute<T>(Computed<T> computed) {
if (!DebugMode.isVerboseLogging) return;
logWithContext(
'Computed value recomputed',
context: {'type': computed.runtimeType.toString()},
);
}