Use debug/warning instead of info log level in components [m] (#126074)
* Use debug instead of info log level in components [m] * Fix modbus test
This commit is contained in:
parent
219417cfb5
commit
2ec0d8e8ef
10 changed files with 16 additions and 16 deletions
|
@ -116,7 +116,7 @@ class MinioEventThread(threading.Thread):
|
|||
|
||||
def run(self):
|
||||
"""Create MinioClient and run the loop."""
|
||||
_LOGGER.info("Running MinioEventThread")
|
||||
_LOGGER.debug("Running MinioEventThread")
|
||||
|
||||
self._should_stop = False
|
||||
|
||||
|
@ -125,7 +125,7 @@ class MinioEventThread(threading.Thread):
|
|||
)
|
||||
|
||||
while not self._should_stop:
|
||||
_LOGGER.info("Connecting to minio event stream")
|
||||
_LOGGER.debug("Connecting to minio event stream")
|
||||
response = None
|
||||
try:
|
||||
response = get_minio_notification_response(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue