feat(postly): add explicit PrintLogger setup in main.dart for debug builds

This commit is contained in:
Sergey Penkovsky
2025-08-08 08:21:19 +03:00
parent aa97632add
commit c971b59483

View File

@@ -7,6 +7,7 @@ import 'di/app_module.dart';
void main() {
// Включаем cycle-detection только в debug/test
if (kDebugMode) {
CherryPick.setGlobalLogger(PrintLogger());
CherryPick.enableGlobalCycleDetection();
CherryPick.enableGlobalCrossScopeCycleDetection();
}