From bf06ca5438d1e1bf4bf7aad4f2db427999a748fa Mon Sep 17 00:00:00 2001 From: Saikat Bhadra Date: Tue, 29 Jan 2019 06:16:23 +0100 Subject: [PATCH] Fix typo in log message Resolves BATCH-2782 (cherry picked from commit 30365edf589436ef5f7978bd97979fb608a15624) --- .../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 960f93105..a71162067 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 @@ InitializingBean { 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);