mirror of https://github.com/apache/jclouds.git
lowered the debug level
This commit is contained in:
parent
c1a989c9f6
commit
caf38ac875
|
@ -154,7 +154,7 @@ public class SimpleDateFormatDateService implements DateService {
|
||||||
|
|
||||||
private String trimTZ(String toParse) {
|
private String trimTZ(String toParse) {
|
||||||
if (TZ_PATTERN.matcher(toParse).matches()) {
|
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';
|
toParse = toParse.substring(0, toParse.length() - 6) + 'Z';
|
||||||
}
|
}
|
||||||
if (toParse.length() == 25 && SECOND_PATTERN.matcher(toParse).matches())
|
if (toParse.length() == 25 && SECOND_PATTERN.matcher(toParse).matches())
|
||||||
|
|
Loading…
Reference in New Issue