From 44c80ef8bb47ab01bfc73b1f6ee6aedec6367af2 Mon Sep 17 00:00:00 2001 From: Martin Ritchie Date: Fri, 15 Jun 2007 16:37:08 +0000 Subject: 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 --- java/common/templates/model/MethodRegistryClass.tmpl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'java/common/templates') 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 classIDMethodIDVersionBodyMap = new HashMap(); - 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; -- cgit v1.2.1