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.
There are many places in the code that use
System.out.println()orSystem.err.println()that should instead use the logging we've already setup. On the other hand, there is a CLI whereSystem.out.println()andSystem.err.println()may be appropriate. Please refactor parts of the code not related to the CLI that use print statements to instead use logging.