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";
// append file content
try {
FileOutputStream fos = null;
try {
fos = new FileOutputStream(logFile, true);
fos.write(appendLog.getBytes("utf-8"));
fos.flush();
} catch (Exception e) {
logger.error(e.getMessage(), e);
} finally {
if (fos != null) {
try {
@ -130,9 +131,6 @@ public class XxlJobFileAppender {
}
}
}
} catch (Exception e) {
logger.error(e.getMessage(), e);
}
}