File tree 1 file changed +3
-3
lines changed
src/main/java/io/strimzi/kafka/bridge
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -93,13 +93,13 @@ public CompletionStage<Set<String>> listTopics() {
93
93
* @return a CompletionStage Void
94
94
*/
95
95
public CompletionStage <Void > createTopic (String topicName ) {
96
- log .trace ("Create topic thread {}" , Thread .currentThread ());
97
- log .info ("Create topic {}" , topicName );
96
+ LOGGER .trace ("Create topic thread {}" , Thread .currentThread ());
97
+ LOGGER .info ("Create topic {}" , topicName );
98
98
CompletableFuture <Void > promise = new CompletableFuture <>();
99
99
this .adminClient .createTopics (Collections .singletonList (new NewTopic (topicName , 2 , (short ) 1 )))
100
100
.all ()
101
101
.whenComplete ((topic , exception ) -> {
102
- log .trace ("Create topic callback thread {}" , Thread .currentThread ());
102
+ LOGGER .trace ("Create topic callback thread {}" , Thread .currentThread ());
103
103
if (exception == null ) {
104
104
promise .complete (topic );
105
105
} else {
You can’t perform that action at this time.
0 commit comments