Add space after jobId in line 1011

One space is needed before `Job Transitioned from` in line 1011. The log output has no space between `jobId` and `Job Transitioned from`.
This commit is contained in:
iSultan 2015-12-02 18:19:13 -05:00
parent 6b9a5beb2b
commit 15aa5d4c1f
1 changed files with 1 additions and 1 deletions

View File

@ -1008,7 +1008,7 @@ public class JobImpl implements org.apache.hadoop.mapreduce.v2.app.job.Job,
} }
//notify the eventhandler of state change //notify the eventhandler of state change
if (oldState != getInternalState()) { if (oldState != getInternalState()) {
LOG.info(jobId + "Job Transitioned from " + oldState + " to " LOG.info(jobId + " Job Transitioned from " + oldState + " to "
+ getInternalState()); + getInternalState());
rememberLastNonFinalState(oldState); rememberLastNonFinalState(oldState);
} }