--- old/src/java.desktop/share/classes/sun/awt/FontConfiguration.java 2016-07-21 15:43:43.939614857 -0700 +++ new/src/java.desktop/share/classes/sun/awt/FontConfiguration.java 2016-07-21 15:43:43.799614859 -0700 @@ -251,12 +251,24 @@ private File findImpl(String fname) { File f = new File(fname + ".properties"); + if (FontUtilities.debugFonts()) { + logger.info("Looking for text fontconfig file : " + f); + } if (f.canRead()) { + if (FontUtilities.debugFonts()) { + logger.info("Found file : " + f); + } isProperties = true; return f; } f = new File(fname + ".bfc"); + if (FontUtilities.debugFonts()) { + logger.info("Looking for binary fontconfig file : " + f); + } if (f.canRead()) { + if (FontUtilities.debugFonts()) { + logger.info("Found file : " + f); + } isProperties = false; return f; } @@ -305,6 +317,9 @@ if (configFile != null) { return configFile; } + if (FontUtilities.debugFonts()) { + logger.info("Did not find a fontconfig file."); + } return null; }