blob: 11c81f7b4020e57e90e28ae389effbe433641738 [file] [log] [blame]
Murtadha Hubail06ca2792018-01-16 00:12:27 +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 Hubail06ca2792018-01-16 00:12:27 +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 Hubail06ca2792018-01-16 00:12:27 +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>
Michael Blow7ed80af2018-01-30 13:24:07 -050027 <Console name="ConsoleTest" target="SYSTEM_OUT">
28 <PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %c{1} - %msg%n"/>
29 </Console>
Murtadha Hubail06ca2792018-01-16 00:12:27 +030030 </Appenders>
31 <Loggers>
Ian Maxon8f378b52018-01-23 16:33:46 -080032 <Root level="WARN">
33 <AppenderRef ref="InfoLog"/>
34 </Root>
Michael Blowd7534792018-02-04 17:06:18 -050035 <Logger name="org.apache.hyracks.control.nc.service" level="INFO"/>
36 <Logger name="org.apache.hyracks" level="INFO"/>
37 <Logger name="org.apache.hyracks.test" level="INFO">
Michael Blow7ed80af2018-01-30 13:24:07 -050038 <AppenderRef ref="ConsoleTest"/>
Murtadha Hubail06ca2792018-01-16 00:12:27 +030039 </Logger>
40 </Loggers>
Ian Maxon8f378b52018-01-23 16:33:46 -080041</Configuration>