diff --git a/java/src/main/java/com/genexus/reports/GXReportPDFCommons.java b/java/src/main/java/com/genexus/reports/GXReportPDFCommons.java index d2f53098e..f6862c4a6 100644 --- a/java/src/main/java/com/genexus/reports/GXReportPDFCommons.java +++ b/java/src/main/java/com/genexus/reports/GXReportPDFCommons.java @@ -305,7 +305,10 @@ protected void loadPrinterSettingsProps(String iniFile, String form, String prin protected void loadProps() { try{ props = new ParseINI(configurationFile, configurationTemplateFile); - } catch(IOException e){ props = new ParseINI(); } + } catch(IOException e) { + log.warn("Failed to load report configuration file " + configurationFile, e); + props = new ParseINI(); + } props.setupGeneralProperty(Const.PDF_REPORT_INI_VERSION_ENTRY, Const.PDF_REPORT_INI_VERSION); props.setupGeneralProperty(Const.EMBEED_SECTION, Const.EMBEED_DEFAULT);