This is an automated email from the ASF dual-hosted git repository.
ilgrosso pushed a commit to branch 2_0_X
in repository https://gitbox.apache.org/repos/asf/syncope.git
The following commit(s) were added to refs/heads/2_0_X by this push:
new c6d2271 Fixing log message
c6d2271 is described below
commit c6d2271a8d5d4ffb3df8428579e18b86dfea2b4d
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 e65ce7e..34737f2 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
@@ -144,7 +144,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;
}
}