ML
ML copied to clipboard
Using logging instead of print statements
There are many places in the code that use System.out.println() or System.err.println() that should instead use the logging we've already setup. On the other hand, there is a CLI where System.out.println() and System.err.println() may be appropriate. Please refactor parts of the code not related to the CLI that use print statements to instead use logging.