Add more whitespace, per suggestion from Peter Eisentraut.
Discussion: https://postgr.es/m/
e265e2ae-e92e-5ab9-dc68-
60b6cb047b3d@2ndquadrant.com
log_child_failure(statuses[i]);
INSTR_TIME_SUBTRACT(stoptimes[i], starttimes[i]);
- status(_(" (%.0f ms)"), INSTR_TIME_GET_MILLISEC(stoptimes[i]));
+ status(_(" %8.0f ms"), INSTR_TIME_GET_MILLISEC(stoptimes[i]));
status_end();
}
log_child_failure(exit_status);
INSTR_TIME_SUBTRACT(stoptime, starttime);
- status(_(" (%.0f ms)"), INSTR_TIME_GET_MILLISEC(stoptime));
+ status(_(" %8.0f ms"), INSTR_TIME_GET_MILLISEC(stoptime));
status_end();
}