This commit is contained in:
xuxueli 2018-05-26 13:41:56 +08:00
parent e3cce6341b
commit df613f163c
1 changed files with 12 additions and 14 deletions

View File

@ -115,12 +115,13 @@ public class XxlJobFileAppender {
appendLog += "\r\n"; appendLog += "\r\n";
// append file content // append file content
try {
FileOutputStream fos = null; FileOutputStream fos = null;
try { try {
fos = new FileOutputStream(logFile, true); fos = new FileOutputStream(logFile, true);
fos.write(appendLog.getBytes("utf-8")); fos.write(appendLog.getBytes("utf-8"));
fos.flush(); fos.flush();
} catch (Exception e) {
logger.error(e.getMessage(), e);
} finally { } finally {
if (fos != null) { if (fos != null) {
try { try {
@ -130,9 +131,6 @@ public class XxlJobFileAppender {
} }
} }
} }
} catch (Exception e) {
logger.error(e.getMessage(), e);
}
} }