You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by fm...@apache.org on 2018/01/30 15:52:19 UTC

[2/2] syncope git commit: [SYNCOPE-1266] fixes log level

[SYNCOPE-1266] fixes log level


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/f278a97a
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/f278a97a
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/f278a97a

Branch: refs/heads/master
Commit: f278a97a2935bcc982881483aa3cba005d94de88
Parents: 8471676
Author: fmartelli <fa...@gmail.com>
Authored: Tue Jan 30 16:52:04 2018 +0100
Committer: fmartelli <fa...@gmail.com>
Committed: Tue Jan 30 16:52:04 2018 +0100

----------------------------------------------------------------------
 .../client/console/wicket/markup/html/form/BinaryFieldPanel.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/f278a97a/client/console/src/main/java/org/apache/syncope/client/console/wicket/markup/html/form/BinaryFieldPanel.java
----------------------------------------------------------------------
diff --git a/client/console/src/main/java/org/apache/syncope/client/console/wicket/markup/html/form/BinaryFieldPanel.java b/client/console/src/main/java/org/apache/syncope/client/console/wicket/markup/html/form/BinaryFieldPanel.java
index a1311a0..631496c 100644
--- a/client/console/src/main/java/org/apache/syncope/client/console/wicket/markup/html/form/BinaryFieldPanel.java
+++ b/client/console/src/main/java/org/apache/syncope/client/console/wicket/markup/html/form/BinaryFieldPanel.java
@@ -263,7 +263,7 @@ public class BinaryFieldPanel extends FieldPanel<String> {
 
     @Override
     public BinaryFieldPanel clone() {
-        LOG.info("Custom clone for binary field panel...");
+        LOG.debug("Custom clone for binary field panel...");
         return new BinaryFieldPanel(getId(), this.name, this.model, this.mimeType, this.fileKey);
     }