The `log` method is proxied too.
(self, abl, cl)
| 1570 | |
| 1571 | @pytest.mark.asyncio |
| 1572 | async def test_log_method(self, abl, cl): |
| 1573 | """ |
| 1574 | The `log` method is proxied too. |
| 1575 | """ |
| 1576 | await abl.bind(foo="bar").log(logging.ERROR, "42") |
| 1577 | |
| 1578 | assert "error" == cl.calls[0].method_name |
| 1579 | |
| 1580 | @pytest.mark.asyncio |
| 1581 | async def test_exception(self, abl, cl): |