Hide debug logs in test_wal_acceptor_async

This commit is contained in:
Arthur Petukhovsky
2021-09-28 21:45:13 +03:00
parent 6a13500da4
commit ed521e05e7
2 changed files with 3 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ from typing import List
import logging
import fixtures.log_helper # configures loggers
log = logging.getLogger('root')
log = logging.getLogger('root.wal_acceptor_async')
pytest_plugins = ("fixtures.zenith_fixtures")

View File

@@ -28,8 +28,8 @@ LOGGING = {
"level": "DEBUG",
"handlers": ["console"]
},
"root.subroot": {
"level": "INFO"
"root.wal_acceptor_async": {
"level": "INFO" # lot of logs on DEBUG level
}
}
}