This is an automated email from the ASF dual-hosted git repository.
mmerli 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 de43bc3 drop unused logback config files (#9353)
de43bc3 is described below
commit de43bc36b4789fae16632a50bc01cd625717651d
Author: Renkai Ge <[email protected]>
AuthorDate: Fri Jan 29 13:09:03 2021 +0800
drop unused logback config files (#9353)
Signed-off-by: Renkai <[email protected]>
---
pulsar-broker/src/test/resources/logback.xml | 36 ---------------------
pulsar-client/src/test/resources/logback-test.xml | 38 -----------------------
2 files changed, 74 deletions(-)
diff --git a/pulsar-broker/src/test/resources/logback.xml
b/pulsar-broker/src/test/resources/logback.xml
deleted file mode 100644
index f5735b0..0000000
--- a/pulsar-broker/src/test/resources/logback.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-<!--
-
- 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 scan="true">
-<!--
- <logger name="org.apache" level="IN" />
- <logger name="org.apache.bookkeeper.mledger" level="ERROR" />
- -->
- <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
- <encoder>
- <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level
%logger{36} - %msg%n
- </pattern>
- </encoder>
- </appender>
-
- <root level="INFO">
- <appender-ref ref="STDOUT" />
- </root>
-</configuration>
diff --git a/pulsar-client/src/test/resources/logback-test.xml
b/pulsar-client/src/test/resources/logback-test.xml
deleted file mode 100644
index 50be16fe..0000000
--- a/pulsar-client/src/test/resources/logback-test.xml
+++ /dev/null
@@ -1,38 +0,0 @@
-<!--
-
- 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 scan="true">
- <logger name="org.apache" level="INFO" />
- <logger name="org" level="INFO" />
- <logger name="com" level="INFO" />
- <logger name="io" level="INFO" />
- <logger name="org.apache.pulsar.client.api" level="INFO" />
-
- <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
- <encoder>
- <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level
%logger{36} - %msg%n
- </pattern>
- </encoder>
- </appender>
-
- <root level="DEBUG">
- <appender-ref ref="STDOUT" />
- </root>
-</configuration>