From b4fad5b385f7f2426290edc9a03302c8d93fcc21 Mon Sep 17 00:00:00 2001 From: Jorrit Schaap <schaap@astron.nl> Date: Tue, 11 Jun 2019 13:11:40 +0000 Subject: [PATCH] SW-699: log level --- LCS/Messaging/python/messaging/messagebus.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LCS/Messaging/python/messaging/messagebus.py b/LCS/Messaging/python/messaging/messagebus.py index 3504ffdcc81..7eedcf7bed2 100644 --- a/LCS/Messaging/python/messaging/messagebus.py +++ b/LCS/Messaging/python/messaging/messagebus.py @@ -477,7 +477,7 @@ class FromBus(_AbstractBus): connected = False """ - def __init__(self, queue: str, broker: str=DEFAULT_BROKER, connection_log_level=logging.INFO): + def __init__(self, queue: str, broker: str=DEFAULT_BROKER, connection_log_level=logging.DEBUG): """ Constructor, specifying the address of the queue to connect to on the given broker. :param queue: the 'name' of the queue to connect to. @@ -650,7 +650,7 @@ class ToBus(_AbstractBus): connected = False """ - def __init__(self, exchange: str=DEFAULT_BUSNAME, broker: str=DEFAULT_BROKER, connection_log_level=logging.INFO): + def __init__(self, exchange: str=DEFAULT_BUSNAME, broker: str=DEFAULT_BROKER, connection_log_level=logging.DEBUG): """ Constructor, specifying the address of the exchange to connect to on the given broker. :param exchange: the name of the exchange to connect to. -- GitLab