summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gentools/templ.java/PropertyContentHeaderClass.tmpl5
-rw-r--r--java/common/src/main/java/org/apache/qpid/util/concurrent/BatchSynchQueueBase.java7
-rw-r--r--java/common/templates/model/MethodRegistryClass.tmpl6
3 files changed, 12 insertions, 6 deletions
diff --git a/gentools/templ.java/PropertyContentHeaderClass.tmpl b/gentools/templ.java/PropertyContentHeaderClass.tmpl
index 3c147cf6b6..ab6406b1fe 100644
--- a/gentools/templ.java/PropertyContentHeaderClass.tmpl
+++ b/gentools/templ.java/PropertyContentHeaderClass.tmpl
@@ -28,12 +28,13 @@
package org.apache.qpid.framing;
-import org.apache.log4j.Logger;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
import org.apache.mina.common.ByteBuffer;
public class ${CLASS}ContentHeaderProperties implements ContentHeaderProperties
{
- private static final Logger logger = Logger.getLogger(BasicContentHeaderProperties.class);
+ private static final Logger logger = LoggerFactory.getLogger(BasicContentHeaderProperties.class);
/**
* We store the encoded form when we decode the content header so that if we need to
diff --git a/java/common/src/main/java/org/apache/qpid/util/concurrent/BatchSynchQueueBase.java b/java/common/src/main/java/org/apache/qpid/util/concurrent/BatchSynchQueueBase.java
index 08b5745b19..5bd7b9aea0 100644
--- a/java/common/src/main/java/org/apache/qpid/util/concurrent/BatchSynchQueueBase.java
+++ b/java/common/src/main/java/org/apache/qpid/util/concurrent/BatchSynchQueueBase.java
@@ -1,11 +1,13 @@
package org.apache.qpid.util.concurrent;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
import java.util.*;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.locks.Condition;
import java.util.concurrent.locks.ReentrantLock;
-import org.apache.log4j.Logger;
/**
* Synchronous/Asynchronous puts. Asynchronous is easiest, just wait till can write to queue and deposit data.
@@ -41,7 +43,8 @@ import org.apache.log4j.Logger;
public abstract class BatchSynchQueueBase<E> extends AbstractQueue<E> implements BatchSynchQueue<E>
{
/** Used for logging. */
- private static final Logger log = Logger.getLogger(BatchSynchQueueBase.class);
+ private static final Logger log = LoggerFactory.getLogger(BatchSynchQueueBase.class);
+
/** Holds a reference to the queue implementation that holds the buffer. */
Queue<SynchRecordImpl<E>> buffer;
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;