Skip to content

Commit 259d014

Browse files
committed
Development for 1.50
1 parent e894bb4 commit 259d014

File tree

2 files changed

+47
-1
lines changed

2 files changed

+47
-1
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,13 @@ For more information, see: http://www.mapcode.com.
1919

2020
## Release Notes
2121

22+
* 1.50
23+
24+
Updated to Mapcode Java Library version 1.50.
25+
2226
* 1.40.2
2327

24-
Updated to version Mapcode Java Library 1.40.2.
28+
Updated to Mapcode Java Library version 1.40.2.
2529

2630
* 1.40
2731

src/main/resources/log4j.xml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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

Comments
 (0)