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

Method error

src/structlog/stdlib.py:693–694  ·  view source on GitHub ↗
(self, event: str, *args: Any, **kw: Any)

Source from the content-addressed store, hash-verified

691 await self._dispatch_to_sync(self.sync_bl.warning, event, args, kw)
692
693 async def error(self, event: str, *args: Any, **kw: Any) -> None:
694 await self._dispatch_to_sync(self.sync_bl.error, event, args, kw)
695
696 async def critical(self, event: str, *args: Any, **kw: Any) -> None:
697 await self._dispatch_to_sync(self.sync_bl.critical, event, args, kw)

Callers

nothing calls this directly

Calls 1

_dispatch_to_syncMethod · 0.95

Tested by

no test coverage detected