aboutsummaryrefslogtreecommitdiff
path: root/contrib/storage-jdbc/src
diff options
context:
space:
mode:
authorVolodymyr Vysotskyi <vvovyk@gmail.com>2017-08-31 12:52:43 +0000
committerPaul Rogers <progers@maprtech.com>2017-09-14 15:52:32 -0700
commitd1552db3850a80b67e4bc33877f70675ec7566a6 (patch)
treec9e7e42382f40ee971c8769712896b29b5983356 /contrib/storage-jdbc/src
parent0b1cb98ad65b2057e5540f84986eb718850dad20 (diff)
DRILL-5761: Disable Lilith ClassicMultiplexSocketAppender by default.
Unify logback files.
Diffstat (limited to 'contrib/storage-jdbc/src')
-rw-r--r--contrib/storage-jdbc/src/test/resources/logback.xml48
1 files changed, 0 insertions, 48 deletions
diff --git a/contrib/storage-jdbc/src/test/resources/logback.xml b/contrib/storage-jdbc/src/test/resources/logback.xml
deleted file mode 100644
index 5facafe61..000000000
--- a/contrib/storage-jdbc/src/test/resources/logback.xml
+++ /dev/null
@@ -1,48 +0,0 @@
-<?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>
-
- <appender name="SOCKET" class="de.huxhorn.lilith.logback.appender.ClassicMultiplexSocketAppender">
- <Compressing>true</Compressing>
- <ReconnectionDelay>10000</ReconnectionDelay>
- <IncludeCallerData>true</IncludeCallerData>
- <RemoteHosts>${LILITH_HOSTNAME:-localhost}</RemoteHosts>
- </appender>
-
- <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
- <!-- encoders are assigned the type
- ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
- <encoder>
- <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
- </encoder>
- <level value="warn" />
- </appender>
-
- <logger name="org.apache.drill" additivity="false">
- <level value="debug" />
- <appender-ref ref="SOCKET" />
-<!-- <appender-ref ref="STDOUT" /> -->
- </logger>
-
- <root>
- <level value="debug" />
- <appender-ref ref="SOCKET" />
-<!-- <appender-ref ref="STDOUT" /> -->
- </root>
-
-</configuration>