Skip to content

Commit

Permalink
Fixed wrong logger output (eclipse-che#9696)
Browse files Browse the repository at this point in the history
  • Loading branch information
skabashnyuk authored and hbhargav committed Dec 4, 2018
1 parent 8f333c2 commit 0ac0753
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ void execute(String workspaceId, String[] commandBase, String... arguments) {
pods.create(pod);
final Pod finished = pods.wait(podName, WAIT_POD_TIMEOUT_MIN, POD_PREDICATE::apply);
if (POD_PHASE_FAILED.equals(finished.getStatus().getPhase())) {
LOG.error("Job command '%s' execution is failed.", Arrays.toString(command));
LOG.error("Job command '{}' execution is failed.", Arrays.toString(command));
}
} catch (InfrastructureException ex) {
LOG.error(
Expand Down

0 comments on commit 0ac0753

Please sign in to comment.