From c971b59483d14d95db61b5681a47f4c25f80fc1d Mon Sep 17 00:00:00 2001 From: Sergey Penkovsky Date: Fri, 8 Aug 2025 08:21:19 +0300 Subject: [PATCH] feat(postly): add explicit PrintLogger setup in main.dart for debug builds --- examples/postly/lib/main.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/postly/lib/main.dart b/examples/postly/lib/main.dart index 968bfeb..c17432b 100644 --- a/examples/postly/lib/main.dart +++ b/examples/postly/lib/main.dart @@ -7,6 +7,7 @@ import 'di/app_module.dart'; void main() { // Включаем cycle-detection только в debug/test if (kDebugMode) { + CherryPick.setGlobalLogger(PrintLogger()); CherryPick.enableGlobalCycleDetection(); CherryPick.enableGlobalCrossScopeCycleDetection(); }