[Task]fix business log using error (#6538)

This commit is contained in:
Kirs 2021-10-15 20:27:24 +08:00 committed by GitHub
parent 52a550b6ae
commit de61d65af2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -98,11 +98,6 @@ public class TaskExecuteThread implements Runnable, Delayed {
*/
private TaskExecutionContextCacheManager taskExecutionContextCacheManager;
/**
* task logger
*/
private Logger taskLogger;
/**
* alert client server
*/
@ -143,7 +138,7 @@ public class TaskExecuteThread implements Runnable, Delayed {
// check if the OS user exists
if (!OSUtils.getUserList().contains(taskExecutionContext.getTenantCode())) {
String errorLog = String.format("tenantCode: %s does not exist", taskExecutionContext.getTenantCode());
taskLogger.error(errorLog);
logger.error(errorLog);
responseCommand.setStatus(ExecutionStatus.FAILURE.getCode());
responseCommand.setEndTime(new Date());
return;