From 85fa8a47618c8c25098f9a13d489b2b90e36cf97 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 4 Feb 2025 13:10:43 -0800 Subject: [PATCH] feat: Add debug statement to log presence of 'tmp.benchmarks' in roots_to_watch --- aider/watch.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aider/watch.py b/aider/watch.py index 72d882264..fb3899e6b 100644 --- a/aider/watch.py +++ b/aider/watch.py @@ -128,6 +128,7 @@ class FileWatcher: else: roots_to_watch = [str(self.root)] + dump("tmp.benchmarks" in roots_to_watch) for changes in watch( *roots_to_watch, watch_filter=self.filter_func, stop_event=self.stop_event ):