Skip to content

Commit 1ed7fa6

Browse files
committed
Replace misleading log message in isComplete method and change its log level to fine
1 parent 66ef34c commit 1ed7fa6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

operator/src/main/java/oracle/kubernetes/operator/JobWatcher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ static void defineFactory(
100100

101101
public static boolean isComplete(V1Job job) {
102102
V1JobStatus status = job.getStatus();
103-
LOGGER.info(MessageKeys.JOB_IS_COMPLETE, job.getMetadata().getName(), status);
103+
LOGGER.fine("JobWatcher.isComplete status of job " + job.getMetadata().getName() + ": " + status);
104104
if (status != null) {
105105
List<V1JobCondition> conds = status.getConditions();
106106
if (conds != null) {

0 commit comments

Comments
 (0)