This is an automated email from the ASF dual-hosted git repository.
popduke pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/bifromq.git
The following commit(s) were added to refs/heads/main by this push:
new 1b9499eb Fixed incorrect FQN in the demo plugin POM file. (#142)
1b9499eb is described below
commit 1b9499eb178356df6436b8530add4b9f16d21bd8
Author: zhangShunLin <[email protected]>
AuthorDate: Fri Jun 6 17:58:39 2025 +0800
Fixed incorrect FQN in the demo plugin POM file. (#142)
* Add test log file for debugging starter module
---
.../src/main/resources/log4j2.xml | 39 ++++++++++++++++++++++
build/build-plugin-demo/pom.xml | 2 +-
2 files changed, 40 insertions(+), 1 deletion(-)
diff --git a/build/build-bifromq-starters/src/main/resources/log4j2.xml
b/build/build-bifromq-starters/src/main/resources/log4j2.xml
new file mode 100644
index 00000000..1086afcf
--- /dev/null
+++ b/build/build-bifromq-starters/src/main/resources/log4j2.xml
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ ~ Licensed to the Apache Software Foundation (ASF) under one
+ ~ or more contributor license agreements. See the NOTICE file
+ ~ distributed with this work for additional information
+ ~ regarding copyright ownership. The ASF licenses this file
+ ~ to you under the Apache License, Version 2.0 (the
+ ~ "License"); you may not use this file except in compliance
+ ~ with the License. You may obtain a copy of the License at
+ ~
+ ~ http://www.apache.org/licenses/LICENSE-2.0
+ ~
+ ~ Unless required by applicable law or agreed to in writing,
+ ~ software distributed under the License is distributed on an
+ ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ ~ KIND, either express or implied. See the License for the
+ ~ specific language governing permissions and limitations
+ ~ under the License.
+ -->
+
+<Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ monitorInterval="5"
+ xmlns="http://logging.apache.org/log4j/2.0/config"
+ xsi:schemaLocation="http://logging.apache.org/log4j/2.0/config
+
http://logging.apache.org/log4j/2.0/log4j-config-2.14.1.xsd">
+
+ <Appenders>
+ <Console name="stdout" target="SYSTEM_OUT">
+ <PatternLayout pattern="%d{HH:mm:ss.SSS} [%thread] %-5level
%logger{36} - %msg%n"/>
+ <ThresholdFilter level="INFO" onMatch="ACCEPT" onMismatch="DENY"/>
+ </Console>
+ </Appenders>
+
+ <Loggers>
+ <Root level="info">
+ <AppenderRef ref="stdout"/>
+ </Root>
+ </Loggers>
+</Configuration>
diff --git a/build/build-plugin-demo/pom.xml b/build/build-plugin-demo/pom.xml
index c4213e57..6329212e 100644
--- a/build/build-plugin-demo/pom.xml
+++ b/build/build-plugin-demo/pom.xml
@@ -32,7 +32,7 @@
<properties>
<plugin.id>bifromq-demo-plugin</plugin.id>
- <plugin.class>org.apache.demo.plugin.DemoPlugin</plugin.class>
+ <plugin.class>org.apache.bifromq.demo.plugin.DemoPlugin</plugin.class>
</properties>
<dependencies>
<dependency>