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

Method info

src/structlog/stdlib.py:218–222  ·  view source on GitHub ↗

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

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

Source from the content-addressed store, hash-verified

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 """
220 Process event and call `logging.Logger.info` with the result.
221 """
222 return self._proxy_to_logger("info", event, *args, **kw)
223
224 def warning(self, event: str | None = None, *args: Any, **kw: Any) -> Any:
225 """

Callers 3

test_e2eMethod · 0.95
show_off.pyFile · 0.45

Calls 1

_proxy_to_loggerMethod · 0.95

Tested by 1

test_e2eMethod · 0.76