You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by ra...@apache.org on 2019/01/04 13:31:00 UTC

[tomee] 11/12: fixing claimbean logging

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

radcortez pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomee.git

commit 5832a429c49e83ec13a712d5eb2c7ee826e7563f
Author: ivanjunckes <ij...@tomitribe.com>
AuthorDate: Fri Jan 4 10:10:03 2019 -0200

    fixing claimbean logging
---
 .../src/main/java/org/apache/tomee/microprofile/jwt/cdi/ClaimBean.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mp-jwt/src/main/java/org/apache/tomee/microprofile/jwt/cdi/ClaimBean.java b/mp-jwt/src/main/java/org/apache/tomee/microprofile/jwt/cdi/ClaimBean.java
index 7e6a758..f2948f2 100644
--- a/mp-jwt/src/main/java/org/apache/tomee/microprofile/jwt/cdi/ClaimBean.java
+++ b/mp-jwt/src/main/java/org/apache/tomee/microprofile/jwt/cdi/ClaimBean.java
@@ -55,7 +55,7 @@ import java.util.logging.Logger;
 @Vetoed
 public class ClaimBean<T> implements Bean<T>, PassivationCapable {
 
-    private static final Logger logger = Logger.getLogger(MPJWTCDIExtension.class.getName());
+    private static final Logger logger = Logger.getLogger(ClaimBean.class.getName());
 
     private static final Set<Annotation> QUALIFIERS = new HashSet<>();