You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by ni...@apache.org on 2022/06/18 05:54:37 UTC

[pulsar] branch master updated: [fix][pulsar-perf] Transactions: use the correct logger name (#16088)

This is an automated email from the ASF dual-hosted git repository.

nicoloboschi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new e90671b5d0e [fix][pulsar-perf] Transactions: use the correct logger name (#16088)
e90671b5d0e is described below

commit e90671b5d0eb542dc577254e2e30bf0392908d5f
Author: Nicolò Boschi <bo...@gmail.com>
AuthorDate: Sat Jun 18 07:54:23 2022 +0200

    [fix][pulsar-perf] Transactions: use the correct logger name (#16088)
---
 .../main/java/org/apache/pulsar/testclient/PerformanceTransaction.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pulsar-testclient/src/main/java/org/apache/pulsar/testclient/PerformanceTransaction.java b/pulsar-testclient/src/main/java/org/apache/pulsar/testclient/PerformanceTransaction.java
index 1be3644021b..9617bea94a7 100644
--- a/pulsar-testclient/src/main/java/org/apache/pulsar/testclient/PerformanceTransaction.java
+++ b/pulsar-testclient/src/main/java/org/apache/pulsar/testclient/PerformanceTransaction.java
@@ -620,7 +620,7 @@ public class PerformanceTransaction {
     static final DecimalFormat DEC = new PaddingDecimalFormat("0.000", 7);
     static final DecimalFormat INTFORMAT = new PaddingDecimalFormat("0", 7);
     static final DecimalFormat TOTALFORMAT = new DecimalFormat("0.000");
-    private static final Logger log = LoggerFactory.getLogger(PerformanceProducer.class);
+    private static final Logger log = LoggerFactory.getLogger(PerformanceTransaction.class);
 
 
     private static  List<List<Consumer<byte[]>>> buildConsumer(PulsarClient client, Arguments arguments)