We've got sufficient logging that handrolling our output is probably more effort than it's worth. Python has a builtin logging library that will be suitable; it supports debug through critical levels with a special exception level for backtraces.
This will allow interoperability with other libraries and reduce the size of the codebase considerably.
We've got sufficient logging that handrolling our output is probably more effort than it's worth. Python has a builtin
logginglibrary that will be suitable; it supportsdebugthroughcriticallevels with a specialexceptionlevel for backtraces.This will allow interoperability with other libraries and reduce the size of the codebase considerably.