This is an automated email from the ASF dual-hosted git repository. ilgrosso pushed a commit to branch 2_1_X in repository https://gitbox.apache.org/repos/asf/syncope.git
commit e6c8301f29fb17a494f5246286150b0879a0e767 Author: Francesco Chicchiriccò <[email protected]> AuthorDate: Fri Jun 12 09:23:35 2020 +0200 Fixing log message --- .../java/org/apache/syncope/client/console/rest/ReportRestClient.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/console/src/main/java/org/apache/syncope/client/console/rest/ReportRestClient.java b/client/console/src/main/java/org/apache/syncope/client/console/rest/ReportRestClient.java index 5b3df81..f783f46 100644 --- a/client/console/src/main/java/org/apache/syncope/client/console/rest/ReportRestClient.java +++ b/client/console/src/main/java/org/apache/syncope/client/console/rest/ReportRestClient.java @@ -148,7 +148,7 @@ public class ReportRestClient extends BaseRestClient getService(ReportTemplateService.class).getFormat(key, format).getEntity()), StandardCharsets.UTF_8); } catch (Exception e) { - LOG.error("Error retrieving mail template {} as {}", key, format, e); + LOG.error("Error retrieving report template {} as {}", key, format, e); return StringUtils.EMPTY; } }
