-
Task
-
Resolution: Done
-
Undefined
-
None
Adding a critical_no_exit() method to our Logger will allow us to port some code over right now. When we make the switch with this being standard (Having control of critical()) and critical_with_exit() being the exception, we can do a global search and replace like:
find . -name '*.py' -exec sed -i s/critical_no_exit/critical/g {} \;
to replace these.