blob: 8f81828d60151c5d7dd127e34f9f5adc10f09458 [file] [log] [blame]
Murtadha Hubailaf4018d2017-12-15 17:56:38 +03001<!--
2 ! Licensed to the Apache Software Foundation (ASF) under one
3 ! or more contributor license agreements. See the NOTICE file
4 ! distributed with this work for additional information
5 ! regarding copyright ownership. The ASF licenses this file
6 ! to you under the Apache License, Version 2.0 (the
Hussain Towailebbe8dddf2019-02-20 06:42:18 +03007 ! "License"); you may not use this file except in compliance
Murtadha Hubailaf4018d2017-12-15 17:56:38 +03008 ! with the License. You may obtain a copy of the License at
9 !
10 ! http://www.apache.org/licenses/LICENSE-2.0
11 !
12 ! Unless required by applicable law or agreed to in writing,
13 ! software distributed under the License is distributed on an
14 ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 ! KIND, either express or implied. See the License for the
16 ! specific language governing permissions and limitations
17 ! under the License.
18 !-->
19<Configuration status="WARN">
20 <Appenders>
Ian Maxon8f378b52018-01-23 16:33:46 -080021 <Console name="Console" target="SYSTEM_OUT">
Murtadha Hubailaf4018d2017-12-15 17:56:38 +030022 <PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/>
23 </Console>
Ian Maxon8f378b52018-01-23 16:33:46 -080024 <File name="InfoLog" fileName="target/info.log">
25 <PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/>
26 </File>
Wail Alkowaileet782b89a2023-11-09 14:33:21 -080027 <File name="DebugLog" fileName="target/debug.log">
28 <PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/>
29 </File>
Michael Blow7ed80af2018-01-30 13:24:07 -050030 <Console name="ConsoleTest" target="SYSTEM_OUT">
31 <PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %c{1} - %msg%n"/>
32 </Console>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +030033 </Appenders>
34 <Loggers>
Wail Alkowaileet782b89a2023-11-09 14:33:21 -080035 <Root>
36 <AppenderRef ref="InfoLog" level="INFO"/>
37 <AppenderRef ref="DebugLog" level="DEBUG"/>
Ian Maxon8f378b52018-01-23 16:33:46 -080038 </Root>
Michael Blowd7534792018-02-04 17:06:18 -050039 <Logger name="org.apache.hyracks.control.nc.service" level="INFO"/>
Wail Alkowaileet782b89a2023-11-09 14:33:21 -080040 <Logger name="org.apache.hyracks" level="DEBUG"/>
41 <Logger name="org.apache.asterix" level="DEBUG"/>
Michael Blowd7534792018-02-04 17:06:18 -050042 <Logger name="org.apache.hyracks.test" level="INFO">
Michael Blow7ed80af2018-01-30 13:24:07 -050043 <AppenderRef ref="ConsoleTest"/>
Michael Blow7ed80af2018-01-30 13:24:07 -050044 </Logger>
Michael Blowd7534792018-02-04 17:06:18 -050045 <Logger name="org.apache.asterix.test" level="INFO">
Michael Blow7ed80af2018-01-30 13:24:07 -050046 <AppenderRef ref="ConsoleTest"/>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +030047 </Logger>
Murtadha Hubailaf4018d2017-12-15 17:56:38 +030048 </Loggers>
Ian Maxon8f378b52018-01-23 16:33:46 -080049</Configuration>