We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66ef34c commit 1ed7fa6Copy full SHA for 1ed7fa6
operator/src/main/java/oracle/kubernetes/operator/JobWatcher.java
@@ -100,7 +100,7 @@ static void defineFactory(
100
101
public static boolean isComplete(V1Job job) {
102
V1JobStatus status = job.getStatus();
103
- LOGGER.info(MessageKeys.JOB_IS_COMPLETE, job.getMetadata().getName(), status);
+ LOGGER.fine("JobWatcher.isComplete status of job " + job.getMetadata().getName() + ": " + status);
104
if (status != null) {
105
List<V1JobCondition> conds = status.getConditions();
106
if (conds != null) {
0 commit comments