This is an automated email from the ASF dual-hosted git repository.
penghui 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 240826a Fix log format. (#12346)
240826a is described below
commit 240826abad754052c1b653b1ce6465ddb90c9103
Author: Jiwei Guo <[email protected]>
AuthorDate: Thu Oct 14 20:29:10 2021 +0800
Fix log format. (#12346)
---
.../org/apache/pulsar/broker/service/persistent/PersistentTopic.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/pulsar-broker/src/main/java/org/apache/pulsar/broker/service/persistent/PersistentTopic.java
b/pulsar-broker/src/main/java/org/apache/pulsar/broker/service/persistent/PersistentTopic.java
index 0f403a8..d1f5a4e 100644
---
a/pulsar-broker/src/main/java/org/apache/pulsar/broker/service/persistent/PersistentTopic.java
+++
b/pulsar-broker/src/main/java/org/apache/pulsar/broker/service/persistent/PersistentTopic.java
@@ -796,7 +796,7 @@ public class PersistentTopic extends AbstractTopic
} else if (ex.getCause() instanceof SubscriptionBusyException)
{
log.warn("[{}][{}] {}", topic, subscriptionName,
ex.getMessage());
} else {
- log.error("[{}] Failed to create subscription: {} error:
{}", topic, subscriptionName, ex);
+ log.error("[{}] Failed to create subscription: {}", topic,
subscriptionName, ex);
}
return null;
});