Skip to content

Commit ab968a7

Browse files
committed
Fixed LOG.error to LOG.info
1 parent 91fb82c commit ab968a7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/mapcode/Decoder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ static Point decode(@Nonnull final String argMapcode,
5858

5959
mapcode = aeuUnpack(mapcode).trim();
6060
if (mapcode.isEmpty()) {
61-
LOG.error("decode: Failed to aeuUnpack {}", argMapcode);
61+
LOG.info("decode: Failed to aeuUnpack {}", argMapcode);
6262
return Point.undefined(); // failed to aeuUnpack
6363
}
6464

src/site/apt/ReleaseNotes.apt.vm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
* 2.2.4
1313

14-
* To do.
14+
* Fix error to info logging in <<<aeuUnpack>>>.
1515

1616
[]
1717

0 commit comments

Comments
 (0)