lowered the debug level

This commit is contained in:
Adrian Cole 2010-08-31 13:55:27 -07:00
parent c1a989c9f6
commit caf38ac875
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ public class SimpleDateFormatDateService implements DateService {
private String trimTZ(String toParse) {
if (TZ_PATTERN.matcher(toParse).matches()) {
logger.warn("trimming tz from %s", toParse);
logger.trace("trimming tz from %s", toParse);
toParse = toParse.substring(0, toParse.length() - 6) + 'Z';
}
if (toParse.length() == 25 && SECOND_PATTERN.matcher(toParse).matches())