The current state of logging is awful. In some places, we simply print(...) messages, which is unacceptable for a library to do. Elsewhere, we simply have # TODO ... comments instructing us to log certain cases. In other places yet, we have comments that could be replaced with INFO logs that provide the same value, but can produce output on execution.
The current state of logging is awful. In some places, we simply
print(...)
messages, which is unacceptable for a library to do. Elsewhere, we simply have# TODO ...
comments instructing us to log certain cases. In other places yet, we have comments that could be replaced withINFO
logs that provide the same value, but can produce output on execution.