Disable numba DEBUG logs

This commit is contained in:
Dominik Jain 2023-10-03 21:16:53 +02:00
parent 9f0a410bb1
commit 8f67c2e9d9

View File

@ -45,6 +45,8 @@ def configure(format=LOG_DEFAULT_FORMAT, level=lg.DEBUG):
_logFormat = format
remove_log_handlers()
basicConfig(level=level, format=format, stream=sys.stdout)
# set log levels of third-party libraries
getLogger("numba").setLevel(INFO)
# noinspection PyShadowingBuiltins