This is an automated email from the ASF dual-hosted git repository.
ilgrosso pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/syncope.git
The following commit(s) were added to refs/heads/master by this push:
new 4d3c90e505 Fix: fix log parameter placeholder mismatches (#1010)
4d3c90e505 is described below
commit 4d3c90e50533b7ce3151839566ff7a39d177d81b
Author: Misagh Moayyed <[email protected]>
AuthorDate: Wed Mar 5 13:35:38 2025 +0400
Fix: fix log parameter placeholder mismatches (#1010)
---
.../org/apache/syncope/client/console/panels/AnyDirectoryPanel.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/client/idrepo/console/src/main/java/org/apache/syncope/client/console/panels/AnyDirectoryPanel.java
b/client/idrepo/console/src/main/java/org/apache/syncope/client/console/panels/AnyDirectoryPanel.java
index 6026563e9b..deafe5abe5 100644
---
a/client/idrepo/console/src/main/java/org/apache/syncope/client/console/panels/AnyDirectoryPanel.java
+++
b/client/idrepo/console/src/main/java/org/apache/syncope/client/console/panels/AnyDirectoryPanel.java
@@ -136,7 +136,7 @@ public abstract class AnyDirectoryPanel<A extends AnyTO, E
extends AbstractAnyRe
try {
return
schemaRestClient.<PlainSchemaTO>read(SchemaType.PLAIN, schema);
} catch (SyncopeClientException e) {
- LOG.warn("Could not read plain schema {}, ignoring",
e);
+ LOG.warn("Could not read plain schema {}, ignoring",
schema, e);
return null;
}
}).
@@ -149,7 +149,7 @@ public abstract class AnyDirectoryPanel<A extends AnyTO, E
extends AbstractAnyRe
try {
return
schemaRestClient.<DerSchemaTO>read(SchemaType.DERIVED, schema);
} catch (SyncopeClientException e) {
- LOG.warn("Could not read derived schema {}, ignoring",
e);
+ LOG.warn("Could not read derived schema {}, ignoring",
schema, e);
return null;
}
}).