Skip to content

Commit

Permalink
style(core): Add missing space to log (#1704)
Browse files Browse the repository at this point in the history
This will make the logs more readable as we move from this:
`RUNNINGCollected child task [Deploy spin-redis]`

to this:
`RUNNING Collected child task [Deploy spin-redis]`
  • Loading branch information
sikevux authored Jun 8, 2020
1 parent c61d79f commit fccb8a4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ <P> DaemonResponse<P> reapChild(DaemonTask task) throws InterruptedException {

TaskRepository.getTask(childTask.getUuid());

log.info(this + "Collected child task " + childTask + " with state " + childTask.getState());
log.info(this + " Collected child task " + childTask + " with state " + childTask.getState());
if (childTask.getResponse() == null) {
throw new RuntimeException("Child response may not be null.");
}
Expand Down

0 comments on commit fccb8a4

Please sign in to comment.