|
| 1 | +<?xml version="1.0" encoding="UTF-8" ?> |
| 2 | +<!-- |
| 3 | + ~ Copyright (C) 2014-2015 Stichting Mapcode Foundation (http://www.mapcode.com) |
| 4 | + ~ |
| 5 | + ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | + ~ you may not use this file except in compliance with the License. |
| 7 | + ~ You may obtain a copy of the License at |
| 8 | + ~ |
| 9 | + ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | + ~ |
| 11 | + ~ Unless required by applicable law or agreed to in writing, software |
| 12 | + ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | + ~ See the License for the specific language governing permissions and |
| 15 | + ~ limitations under the License. |
| 16 | +--> |
| 17 | + |
| 18 | +<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd"> |
| 19 | + |
| 20 | +<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/"> |
| 21 | + <appender name="console" class="org.apache.log4j.ConsoleAppender"> |
| 22 | + <param name="Target" value="System.out"/> |
| 23 | + <layout class="org.apache.log4j.PatternLayout"> |
| 24 | + <param name="ConversionPattern" value="# %d{yyyy-MM-dd HH:mm:ss.SSS} [%-5p] %22.22t | %42.42c | %m%n"/> |
| 25 | + </layout> |
| 26 | + </appender> |
| 27 | + |
| 28 | + <!-- Make sure we get all messages from our own domain. --> |
| 29 | + <logger name="com.mapcode"> |
| 30 | + <level value="info"/> |
| 31 | + </logger> |
| 32 | + |
| 33 | + <!-- |
| 34 | + Define the root (default) logging level. Set it to "warn" to avoid |
| 35 | + getting debug and info messages from 3rd party products. |
| 36 | + --> |
| 37 | + |
| 38 | + <root> |
| 39 | + <priority value="warn"/> |
| 40 | + <appender-ref ref="console"/> |
| 41 | + </root> |
| 42 | +</log4j:configuration> |
0 commit comments