git-tfs-id: [http://tfs.userrendszerhaz.hu:8080/tfs/DefaultCollection]$/MediaCube...
authorSweidan Omar <TFS\sweidan.omar>
Mon, 2 May 2022 10:10:48 +0000 (10:10 +0000)
committerSweidan Omar <TFS\sweidan.omar>
Mon, 2 May 2022 10:10:48 +0000 (10:10 +0000)
server/user.jobengine.osgi.server/src/user/jobengine/server/JobEngine.java

index af5db131fc955b38febfc1606c58b1cbe4738d18..85ae209e73c3b4c00beac7e9f2ee74d42b6700c4 100644 (file)
@@ -501,7 +501,7 @@ public class JobEngine implements IJobEngine {
        @Override
        public IJobRuntime getJobById(long jobId) {
                if (!submittedJobs.containsKey(jobId)) {
-                       logger.warn("Job not exists anymore {}. Possible canceled already.", jobId);
+                       logger.warn("Job does not exist anymore {}. Possibly canceled already.", jobId);
                }
                return submittedJobs.get(jobId);
        }
@@ -653,7 +653,7 @@ public class JobEngine implements IJobEngine {
                IJobRuntime jobRuntime = getJobById(message.getJobId());
 
                if (jobRuntime == null) {
-                       logger.warn("Job with id {} not exists!", message.getJobId());
+                       logger.warn("Job with id {} does not exist!", message.getJobId());
                        return;
                }
 
@@ -672,7 +672,7 @@ public class JobEngine implements IJobEngine {
                IJobRuntime jobRuntime = getJobById(message.getJobId());
 
                if (jobRuntime == null) {
-                       logger.warn("Job with id {} not exists!", message.getJobId());
+                       logger.warn("Job with id {} does not exist!", message.getJobId());
                        return;
                }