From 30365edf589436ef5f7978bd97979fb608a15624 Mon Sep 17 00:00:00 2001 From: Saikat Bhadra Date: Mon, 28 Jan 2019 21:16:23 -0800 Subject: [PATCH] Fix typo in log message Resolves BATCH-2782 --- .../java/org/springframework/batch/core/job/AbstractJob.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-batch-core/src/main/java/org/springframework/batch/core/job/AbstractJob.java b/spring-batch-core/src/main/java/org/springframework/batch/core/job/AbstractJob.java index 960f93105f..a71162067b 100644 --- a/spring-batch-core/src/main/java/org/springframework/batch/core/job/AbstractJob.java +++ b/spring-batch-core/src/main/java/org/springframework/batch/core/job/AbstractJob.java @@ -1,5 +1,5 @@ /* - * Copyright 2006-2018 the original author or authors. + * Copyright 2006-2019 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -358,7 +358,7 @@ public final void execute(JobExecution execution) { try { listener.afterJob(execution); } catch (Exception e) { - logger.error("Exception encountered in afterStep callback", e); + logger.error("Exception encountered in afterJob callback", e); } jobRepository.update(execution);