- 
    Enhancement 
- 
    Resolution: Fixed
- 
     P4 P4
- 
    16
- 
    None
- 
        b08
- 
        generic
- 
        generic
                    We have a lot of font logging calls in  java.desktop  that looks similar to this :
if (FontUtilities.isLogging()) {
FontUtilities.getLogger().info("Here comes my important info");
}
This could be simplified by adding static log methods to FontUtilities.java .
if (FontUtilities.isLogging()) {
FontUtilities.getLogger().info("Here comes my important info");
}
This could be simplified by adding static log methods to FontUtilities.java .