1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-08 14:22:09 +03:00

Remove WES stop exclusion logic

This commit is contained in:
Alexander Presnyakov
2025-04-03 18:22:29 +00:00
parent fbf4844e71
commit 3671d4953f
3 changed files with 7 additions and 4 deletions

View File

@@ -70,7 +70,10 @@ def setup_logging(verbose: bool = False) -> None:
add_logging_level('TRACE', 5)
dict_config(MCS_CLI_LOG_CONF_PATH)
if verbose:
enable_console_logging(logging.getLogger())
for logger_name in ("", "mcs_cli"):
logger = logging.getLogger(logger_name)
logger.setLevel(logging.DEBUG)
enable_console_logging(logger)
if __name__ == '__main__':