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:
parent
6b9a5beb2b
commit
15aa5d4c1f
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue