This commit is contained in:
xuxueli 2019-10-23 15:10:30 +08:00
commit 8e16a679ec
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ public class DateUtil {
Date date = getDateFormat(pattern).parse(dateString); Date date = getDateFormat(pattern).parse(dateString);
return date; return date;
} catch (Exception e) { } catch (Exception e) {
logger.warn("parse date error, dateString = {}, pattern={}; errorMsg = ", dateString, pattern, e.getMessage()); logger.warn("parse date error, dateString = {}, pattern={}; errorMsg = {}", dateString, pattern, e.getMessage());
return null; return null;
} }
} }