Mention what's going on here

This commit is contained in:
Daniel Bachhuber 2016-07-25 11:16:32 -07:00
parent 5dc4c74255
commit f2c0778ef7

View file

@ -88,6 +88,7 @@ class Profile_Command {
foreach( $this->scope_log as $scope => $data ) {
foreach( $data as $key => $value ) {
// Round times to 5 decimal points
if ( stripos( $key,'_time' ) ) {
$this->scope_log[ $scope ][ $key ] = round( $value, 5 ) . 's';
}