1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-12 23:37:14 +03:00

[2215] Clarify Config Imports

This commit is contained in:
David Sangrey 2024-06-17 18:20:53 -04:00
parent 74af852fca
commit fcd7b8da0f
No known key found for this signature in database
GPG Key ID: 3AEADBB0186884BC

View File

@ -50,8 +50,7 @@ from threading import get_native_id as thread_native_id
from time import gmtime from time import gmtime
from traceback import print_exc from traceback import print_exc
from typing import TYPE_CHECKING, cast from typing import TYPE_CHECKING, cast
import config as config_mod from config import appcmdname, appname, config, trace_on
from config import appcmdname, appname, config
# TODO: Tests: # TODO: Tests:
# #
@ -102,7 +101,7 @@ warnings.simplefilter('default', DeprecationWarning)
def _trace_if(self: logging.Logger, condition: str, message: str, *args, **kwargs) -> None: def _trace_if(self: logging.Logger, condition: str, message: str, *args, **kwargs) -> None:
if any(fnmatch(condition, p) for p in config_mod.trace_on): if any(fnmatch(condition, p) for p in trace_on):
self._log(logging.TRACE, message, args, **kwargs) # type: ignore # we added it self._log(logging.TRACE, message, args, **kwargs) # type: ignore # we added it
return return