-
Notifications
You must be signed in to change notification settings - Fork 26
/
logback-test.xml
36 lines (29 loc) · 1.33 KB
/
logback-test.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!--
Copyright 2024 StarTree Inc
Licensed under the StarTree Community License (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.startree.ai/legal/startree-community-license
Unless required by applicable law or agreed to in writing, software distributed under the
License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OF ANY KIND,
either express or implied.
See the License for the specific language governing permissions and limitations under
the License.
-->
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger - %msg%n</pattern>
</encoder>
</appender>
<root level="INFO">
<appender-ref ref="STDOUT" />
</root>
<logger name="org.apache.pinot" level="DEBUG" />
<logger name="org.apache.calcite" level="INFO"/>
<!-- custom log configuration for test containers-->
<logger name="org.testcontainers" level="INFO"/>
<!-- The following logger can be used for containers logs since 1.18.0 -->
<logger name="tc" level="INFO"/>
<logger name="com.github.dockerjava" level="WARN"/>
<logger name="com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.wire" level="OFF"/>
</configuration>