You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently mite uses blocking calls to the logging library to do its logging. Unfortunately, python doesn't have async logging built in. We could switch to https://github.com/B2W-BIT/aiologger for our logging. The advantage of doing so is that the log calls will be asynchronous, and play with the io model that mite uses. But it presupposes an additional dependency.
The text was updated successfully, but these errors were encountered:
👍 for a fat friday. I think this should be deferred until after the perf test suite is merged, just to make it easier to measure the impact of the change. I hope to get back to that soon, because it's (sort of) one of my PDP goals (I think I technically just committed to integration testing, not full perf tests, but one is a stepping stone to the other).
Currently mite uses blocking calls to the logging library to do its logging. Unfortunately, python doesn't have async logging built in. We could switch to https://github.com/B2W-BIT/aiologger for our logging. The advantage of doing so is that the log calls will be asynchronous, and play with the io model that mite uses. But it presupposes an additional dependency.
The text was updated successfully, but these errors were encountered: