Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,13 @@
* @author Adrian Chlebosz
* @author Soby Chacko
* @author Sanghyeok An
* @author Borahm Lee
*
* @since 2.2
*/
public class EmbeddedKafkaZKBroker implements EmbeddedKafkaBroker {

private static final LogAccessor logger = new LogAccessor(LogFactory.getLog(EmbeddedKafkaBroker.class)); // NOSONAR
private static final LogAccessor logger = new LogAccessor(LogFactory.getLog(EmbeddedKafkaZKBroker.class)); // NOSONAR

public static final String SPRING_EMBEDDED_ZOOKEEPER_CONNECT = "spring.embedded.zookeeper.connect";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,13 @@
*
* @author Tomaz Fernandes
* @author Gary Russell
* @author Borahm Lee
* @since 2.9
* @see DefaultErrorHandler
*/
public class ContainerPartitionPausingBackOffManager implements KafkaConsumerBackoffManager {

private static final LogAccessor LOGGER = new LogAccessor(LogFactory.getLog(KafkaConsumerBackoffManager.class));
private static final LogAccessor LOGGER = new LogAccessor(LogFactory.getLog(ContainerPartitionPausingBackOffManager.class));

private final ListenerContainerRegistry listenerContainerRegistry;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
import java.util.concurrent.ConcurrentHashMap;
import java.util.regex.Pattern;

import org.apache.commons.logging.LogFactory;

import org.springframework.core.log.LogAccessor;
import org.springframework.lang.NonNull;
import org.springframework.lang.Nullable;
Expand All @@ -40,6 +42,7 @@
* @author Gary Russell
* @author Wang Zhiyang
* @author Sanghyeok An
* @author Borahm Lee
*
* @since 2.8
*
Expand All @@ -48,7 +51,7 @@ public abstract class DelegatingByTopicSerialization<T extends Closeable> implem

private static final String UNCHECKED = "unchecked";

private static final LogAccessor LOGGER = new LogAccessor(DelegatingDeserializer.class);
private static final LogAccessor LOGGER = new LogAccessor(LogFactory.getLog(DelegatingByTopicSerialization.class));

/**
* Name of the configuration property containing the serialization selector map for
Expand Down