MCPcopy Create free account
hub / github.com/hynek/structlog / debug

Method debug

src/structlog/stdlib.py:212–216  ·  view source on GitHub ↗

Process event and call `logging.Logger.debug` with the result.

(self, event: str | None = None, *args: Any, **kw: Any)

Source from the content-addressed store, hash-verified

210 return super().new(**new_values)
211
212 def debug(self, event: str | None = None, *args: Any, **kw: Any) -> Any:
213 """
214 Process event and call `logging.Logger.debug` with the result.
215 """
216 return self._proxy_to_logger("debug", event, *args, **kw)
217
218 def info(self, event: str | None = None, *args: Any, **kw: Any) -> Any:
219 """

Calls 1

_proxy_to_loggerMethod · 0.95