There is a lot of code that logs debug / fine messages using System.out.println.
Most of the time this code has a corresponding debug flag hard-coded to false (search for private static final DEBUG = false;).
Update all these occurrence to use the existing logging utility class instead.
There is a lot of code that logs debug / fine messages using
System.out.println
. Most of the time this code has a corresponding debug flag hard-coded tofalse
(search forprivate static final DEBUG = false;
).Update all these occurrence to use the existing logging utility class instead.