From a4c0bf3e6f7f8e18d59eb3b2234dd396baca9f5c Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Sat, 30 Mar 2024 09:05:41 +0100 Subject: [PATCH] Default `debug` to `None` to attempt to allow propagation of default debug settings --- syndicate/actor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syndicate/actor.py b/syndicate/actor.py index 094faee..425062f 100644 --- a/syndicate/actor.py +++ b/syndicate/actor.py @@ -30,7 +30,7 @@ class System: self.inhabitant_count = 0 self.exit_signal = asyncio.Queue() - def run(self, boot_proc, debug = False, name = None, configure_logging = True): + def run(self, boot_proc, debug = None, name = None, configure_logging = True): if configure_logging: logging.basicConfig(level = logging.DEBUG if debug else logging.INFO) if debug: