ilgrosso commented on code in PR #1010:
URL: https://github.com/apache/syncope/pull/1010#discussion_r1981018491


##########
client/idrepo/console/src/main/java/org/apache/syncope/client/console/panels/AnyDirectoryPanel.java:
##########
@@ -136,7 +136,7 @@ protected AnyDirectoryPanel(final String id, final 
Builder<A, E> builder, final
                     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);

Review Comment:
   Shouldn't this be
   
   ```java
   LOG.warn("Could not read plain schema {}, ignoring", schema, e);
   ```
   
   ?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to