Skip to content

Commit

Permalink
Fxied wrong logger output
Browse files Browse the repository at this point in the history
  • Loading branch information
skabashnyuk committed May 15, 2018
1 parent 5b0060d commit dc0ca53
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 dc0ca53

Please sign in to comment.