Explorar el Código

Merge branch 'master' of https://github.com/xuxueli/xxl-job

xuxueli hace 5 años
padre
commit
8e16a679ec

+ 1 - 1
xxl-job-core/src/main/java/com/xxl/job/core/util/DateUtil.java Ver fichero

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