Skip to content

Commit

Permalink
Fix log syntax (#15004)
Browse files Browse the repository at this point in the history
  • Loading branch information
georgew5656 authored Sep 18, 2023
1 parent 973fbaf commit d459df8
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,13 +121,13 @@ public boolean deletePeonJob(K8sTaskId taskId)
.withName(taskId.getK8sJobName())
.delete().isEmpty());
if (result) {
log.info("Cleaned up k8s task: %s", taskId);
log.info("Cleaned up k8s job: %s", taskId);
} else {
log.info("K8s task does not exist: %s", taskId);
log.info("K8s job does not exist: %s", taskId);
}
return result;
} else {
log.info("Not cleaning up task %s due to flag: debugJobs=true", taskId);
log.info("Not cleaning up job %s due to flag: debugJobs=true", taskId);
return true;
}
}
Expand Down

0 comments on commit d459df8

Please sign in to comment.