diff --git a/LCS/Messaging/python/messaging/messagebus.py b/LCS/Messaging/python/messaging/messagebus.py index 3504ffdcc81f23a8f69d505bda61c082621f277d..7eedcf7bed2f5521519d3ac567459998f3890f50 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.