From f413d0b2173df480bfbcd2137bb50faf1f00a3cd Mon Sep 17 00:00:00 2001 From: Marshall Hallenbeck Date: Sun, 26 Mar 2023 00:49:31 -0400 Subject: [PATCH] update confusing spooler log entry to specify its from that module --- cme/modules/spooler.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cme/modules/spooler.py b/cme/modules/spooler.py index 40219ca3..d1cd053e 100644 --- a/cme/modules/spooler.py +++ b/cme/modules/spooler.py @@ -102,11 +102,11 @@ class CMEModule: if entries: num = len(entries) if 1 == num: - logging.info('Received one endpoint.') + logging.debug(f"[Spooler] Received one endpoint") else: - logging.info('Received %d endpoints.' % num) + logging.debug(f"[Spooler] Received {num} endpoints") else: - logging.info('No endpoints found.') + logging.debug(f"[Spooler] No endpoints found") def __fetchList(self, rpctransport): dce = rpctransport.get_dce_rpc()