You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2018/08/30 10:07:22 UTC

[myfaces-tobago] branch master updated: fix logging category

This is an automated email from the ASF dual-hosted git repository.

lofwyr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git


The following commit(s) were added to refs/heads/master by this push:
     new 0d9442d  fix logging category
0d9442d is described below

commit 0d9442dce8aeb39f918a4db4caeb38867d79d1d6
Author: Udo Schnurpfeil <lo...@apache.org>
AuthorDate: Thu Aug 30 12:07:09 2018 +0200

    fix logging category
---
 .../org/apache/myfaces/tobago/facelets/ConvertDateTimeHandler.java  | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/tobago-core/src/main/java/org/apache/myfaces/tobago/facelets/ConvertDateTimeHandler.java b/tobago-core/src/main/java/org/apache/myfaces/tobago/facelets/ConvertDateTimeHandler.java
index ea0a0e6..c49ecc2 100644
--- a/tobago-core/src/main/java/org/apache/myfaces/tobago/facelets/ConvertDateTimeHandler.java
+++ b/tobago-core/src/main/java/org/apache/myfaces/tobago/facelets/ConvertDateTimeHandler.java
@@ -20,6 +20,8 @@
 package org.apache.myfaces.tobago.facelets;
 
 import org.apache.myfaces.tobago.convert.DateTimeConverter;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
 
 import javax.el.ELException;
 import javax.el.ValueExpression;
@@ -36,10 +38,10 @@ import javax.faces.view.facelets.TagException;
 import java.util.Locale;
 import java.util.TimeZone;
 
-import static org.apache.myfaces.tobago.internal.util.Deprecation.LOG;
-
 public class ConvertDateTimeHandler extends ConverterHandler {
 
+  private static final Logger LOG = LoggerFactory.getLogger(ConvertDateTimeHandler.class);
+
   private final TagAttribute binding;
   private final TagAttribute locale;
   private final TagAttribute pattern;