You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by jk...@apache.org on 2015/03/24 14:43:21 UTC

tapestry-5 git commit: TAP5-2469: Use correct name for logger

Repository: tapestry-5
Updated Branches:
  refs/heads/master 2133db6b6 -> e91d8ca49


TAP5-2469: Use correct name for logger


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

Branch: refs/heads/master
Commit: e91d8ca493773c0d4421d0ecc7d7eebc433e59dc
Parents: 2133db6
Author: Nicolas Bouillon <ni...@bouil.org>
Authored: Thu Mar 19 15:32:31 2015 +0100
Committer: Jochen Kemnade <jo...@eddyson.de>
Committed: Tue Mar 24 14:41:02 2015 +0100

----------------------------------------------------------------------
 .../main/java/org/apache/tapestry5/ioc/internal/RegistryImpl.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/e91d8ca4/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/RegistryImpl.java
----------------------------------------------------------------------
diff --git a/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/RegistryImpl.java b/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/RegistryImpl.java
index 51ca08a..73cadf3 100644
--- a/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/RegistryImpl.java
+++ b/tapestry-ioc/src/main/java/org/apache/tapestry5/ioc/internal/RegistryImpl.java
@@ -379,7 +379,7 @@ public class RegistryImpl implements Registry, InternalRegistry, ServiceProxyPro
 
     private Logger loggerForBuiltinService(String serviceId)
     {
-        return loggerSource.getLogger(TapestryIOCModule.class + "." + serviceId);
+        return loggerSource.getLogger(TapestryIOCModule.class.getName() + "." + serviceId);
     }
 
     private <T> void addBuiltin(final String serviceId, final Class<T> serviceInterface, T service)