Skip to content

Commit 8119ccc

Browse files
Reduce log level to prevent log file pollution (#202)
Co-authored-by: Till Hoffmann <[email protected]> Co-authored-by: Till Hoffmann <[email protected]>
1 parent 130d89e commit 8119ccc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testcontainers/core/waiting_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def wrapper(wrapped, instance, args, kwargs):
4848
try:
4949
return wrapped(*args, **kwargs)
5050
except transient_exceptions as e:
51-
logger.info('container is not yet ready: %s', traceback.format_exc())
51+
logger.debug('container is not yet ready: %s', traceback.format_exc())
5252
time.sleep(config.SLEEP_TIME)
5353
exception = e
5454
raise TimeoutException(

0 commit comments

Comments
 (0)