diff options
author | Martin Ritchie <ritchiem@apache.org> | 2007-06-15 16:37:08 +0000 |
---|---|---|
committer | Martin Ritchie <ritchiem@apache.org> | 2007-06-15 16:37:08 +0000 |
commit | 44c80ef8bb47ab01bfc73b1f6ee6aedec6367af2 (patch) | |
tree | e2f447ebaefbe03a3874a5c967f1315eb1cfc6aa /java/common/templates | |
parent | f92c24912aafd5fd5a0c279fddb9c51123b89df0 (diff) | |
download | qpid-python-44c80ef8bb47ab01bfc73b1f6ee6aedec6367af2.tar.gz |
Merged revisions 547178 via svnmerge from
https://svn.apache.org/repos/asf/incubator/qpid/branches/M2
........
r547178 | gsim | 2007-06-14 09:51:39 +0100 (Thu, 14 Jun 2007) | 3 lines
Converted templates to generate classes using slf4j rather than log4j inline with changes applied in rev 546190.
........
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@547731 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/common/templates')
-rw-r--r-- | java/common/templates/model/MethodRegistryClass.tmpl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/java/common/templates/model/MethodRegistryClass.tmpl b/java/common/templates/model/MethodRegistryClass.tmpl index 388a1a936f..82a385f20c 100644 --- a/java/common/templates/model/MethodRegistryClass.tmpl +++ b/java/common/templates/model/MethodRegistryClass.tmpl @@ -29,7 +29,8 @@ package org.apache.qpid.framing; import java.util.HashMap; -import org.apache.log4j.Logger; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; import org.apache.mina.common.ByteBuffer; public class MainRegistry @@ -37,7 +38,8 @@ public class MainRegistry private static final HashMap<Long, AMQMethodBodyInstanceFactory> classIDMethodIDVersionBodyMap = new HashMap<Long, AMQMethodBodyInstanceFactory>(); - private static final Logger _log = Logger.getLogger(MainRegistry.class); + private static final Logger _log = LoggerFactory.getLogger(MainRegistry.class); + private static final int DEFAULT_MINOR_VERSION_COUNT = 10; |