(
self,
text: str,
images: typing.Optional[list[platform_message.Image]] = None,
message_session_id: typing.Optional[str] = None,
no_throw: bool = True,
)
| 219 | ) |
| 220 | |
| 221 | async def error( |
| 222 | self, |
| 223 | text: str, |
| 224 | images: typing.Optional[list[platform_message.Image]] = None, |
| 225 | message_session_id: typing.Optional[str] = None, |
| 226 | no_throw: bool = True, |
| 227 | ): |
| 228 | await self._add_log( |
| 229 | level=EventLogLevel.ERROR, |
| 230 | text=text, |
| 231 | images=images, |
| 232 | message_session_id=message_session_id, |
| 233 | no_throw=no_throw, |
| 234 | ) |
no test coverage detected