thds.core 1.47.20251021234407__py3-none-any.whl → 1.47.20251023163413__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of thds.core might be problematic. Click here for more details.
- thds/core/log/__init__.py +1 -1
- thds/core/log/kw_logger.py +10 -0
- {thds_core-1.47.20251021234407.dist-info → thds_core-1.47.20251023163413.dist-info}/METADATA +1 -1
- {thds_core-1.47.20251021234407.dist-info → thds_core-1.47.20251023163413.dist-info}/RECORD +7 -7
- {thds_core-1.47.20251021234407.dist-info → thds_core-1.47.20251023163413.dist-info}/WHEEL +0 -0
- {thds_core-1.47.20251021234407.dist-info → thds_core-1.47.20251023163413.dist-info}/entry_points.txt +0 -0
- {thds_core-1.47.20251021234407.dist-info → thds_core-1.47.20251023163413.dist-info}/top_level.txt +0 -0
thds/core/log/__init__.py
CHANGED
|
@@ -26,4 +26,4 @@ logger.info("testing 5")
|
|
|
26
26
|
|
|
27
27
|
from .basic_config import DuplicateFilter, set_logger_to_console_level # noqa: F401
|
|
28
28
|
from .kw_formatter import ThdsCompactFormatter # noqa: F401
|
|
29
|
-
from .kw_logger import KwLogger, getLogger, logger_context, make_th_formatters_safe # noqa: F401
|
|
29
|
+
from .kw_logger import KwLogger, auto, getLogger, logger_context, make_th_formatters_safe # noqa: F401
|
thds/core/log/kw_logger.py
CHANGED
|
@@ -80,6 +80,16 @@ def getLogger(name: Optional[str] = None) -> logging.LoggerAdapter:
|
|
|
80
80
|
return KwLogger(logging.getLogger(name), dict())
|
|
81
81
|
|
|
82
82
|
|
|
83
|
+
def auto(*skip: str) -> logging.LoggerAdapter:
|
|
84
|
+
from .. import inspect
|
|
85
|
+
|
|
86
|
+
module_name = inspect.caller_module_name(__name__, *skip)
|
|
87
|
+
if not module_name:
|
|
88
|
+
raise ValueError("Cannot automatically determine caller module name for logger.")
|
|
89
|
+
|
|
90
|
+
return getLogger(module_name)
|
|
91
|
+
|
|
92
|
+
|
|
83
93
|
def make_th_formatters_safe(logger: logging.Logger):
|
|
84
94
|
"""Non-adapted loggers may still run into our root format string,
|
|
85
95
|
which expects _TH_REC_CTXT to be present on every LogRecord.
|
|
@@ -46,11 +46,11 @@ thds/core/thunks.py,sha256=LxwqUsu3YPVDleGbNk5JWZIncDYwvM8wUBNOS2L09zs,1056
|
|
|
46
46
|
thds/core/timer.py,sha256=aOpNP-wHKaKs6ONK5fOtIOgx00FChVZquG4PeaEYH_k,5376
|
|
47
47
|
thds/core/tmp.py,sha256=jA8FwDbXo3hx8o4kRjAlkwpcI77X86GY4Sktkps29ho,3166
|
|
48
48
|
thds/core/types.py,sha256=sFqI_8BsB1u85PSizjBZw8PBtplC7U54E19wZZWCEvI,152
|
|
49
|
-
thds/core/log/__init__.py,sha256=
|
|
49
|
+
thds/core/log/__init__.py,sha256=wbHgzqHln74wfqM7gLzRURgOn9V_-2dOnoOBi37xczU,1354
|
|
50
50
|
thds/core/log/basic_config.py,sha256=2Y9U_c4PTrIsCmaN7Ps6Xr90AhJPzdYjeUzUMqO7oFU,6704
|
|
51
51
|
thds/core/log/json_formatter.py,sha256=C5bRsSbAqaQqfTm88jc3mYe3vwKZZLAxET8s7_u7aN0,1757
|
|
52
52
|
thds/core/log/kw_formatter.py,sha256=9-MVOd2r5NEkYNne9qWyFMeR5lac3w7mjHXsDa681i0,3379
|
|
53
|
-
thds/core/log/kw_logger.py,sha256=
|
|
53
|
+
thds/core/log/kw_logger.py,sha256=bXajphFJXOtiIOix7a4uOs_gzqTiPu-76uVGIZK7A5E,4351
|
|
54
54
|
thds/core/log/logfmt.py,sha256=i66zoG2oERnE1P_0TVXdlfJ1YgUmvtMjqRtdV5u2SvU,10366
|
|
55
55
|
thds/core/source/__init__.py,sha256=e-cRoLl1HKY3YrDjpV5p_i7zvr1L4q51-t1ISTxdig4,543
|
|
56
56
|
thds/core/source/_construct.py,sha256=jtsh0Du67TslWjCLASZ3pAMeaiowfgm7Bt50zIhwx7k,4330
|
|
@@ -74,8 +74,8 @@ thds/core/sqlite/structured.py,sha256=8t1B6XbM5NnudKEeBLsdjRVbSXXSr6iHOW0HwEAqtX
|
|
|
74
74
|
thds/core/sqlite/types.py,sha256=oq8m0UrvSn1IqWWcQ4FPptfAhdj6DllnCe7puVqSHlY,1297
|
|
75
75
|
thds/core/sqlite/upsert.py,sha256=BmKK6fsGVedt43iY-Lp7dnAu8aJ1e9CYlPVEQR2pMj4,5827
|
|
76
76
|
thds/core/sqlite/write.py,sha256=z0219vDkQDCnsV0WLvsj94keItr7H4j7Y_evbcoBrWU,3458
|
|
77
|
-
thds_core-1.47.
|
|
78
|
-
thds_core-1.47.
|
|
79
|
-
thds_core-1.47.
|
|
80
|
-
thds_core-1.47.
|
|
81
|
-
thds_core-1.47.
|
|
77
|
+
thds_core-1.47.20251023163413.dist-info/METADATA,sha256=WUgM3scG8HYNOWNnkU8QL9u0dyseKlMWCM1Te2kMWZ4,2216
|
|
78
|
+
thds_core-1.47.20251023163413.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
79
|
+
thds_core-1.47.20251023163413.dist-info/entry_points.txt,sha256=bOCOVhKZv7azF3FvaWX6uxE6yrjK6FcjqhtxXvLiFY8,161
|
|
80
|
+
thds_core-1.47.20251023163413.dist-info/top_level.txt,sha256=LTZaE5SkWJwv9bwOlMbIhiS-JWQEEIcjVYnJrt-CriY,5
|
|
81
|
+
thds_core-1.47.20251023163413.dist-info/RECORD,,
|
|
File without changes
|
{thds_core-1.47.20251021234407.dist-info → thds_core-1.47.20251023163413.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{thds_core-1.47.20251021234407.dist-info → thds_core-1.47.20251023163413.dist-info}/top_level.txt
RENAMED
|
File without changes
|