@@ -567,13 +567,13 @@ def print_detail_data(self):
567
567
detail_head = [
568
568
"Step" ,
569
569
"Operation" ,
570
- "Time" ,
570
+ "Time (ms) " ,
571
571
]
572
572
table = PrettyTable (detail_head )
573
573
table .add_rows (self ._detail_list )
574
574
table_title = "Detail Data" .center (len (str (table ).split ("\n " )[0 ]), " " )
575
575
table .align ["Operation" ] = "l"
576
- table .align ["Time" ] = "l"
576
+ table .align ["Time (ms) " ] = "l"
577
577
logging .info (table_title )
578
578
logging .info (table )
579
579
@@ -582,13 +582,13 @@ def print_summary_data(self):
582
582
summary_head = [
583
583
"Level" ,
584
584
"Operation" ,
585
- "Time" ,
585
+ "Time (ms) " ,
586
586
]
587
587
table = PrettyTable (summary_head )
588
588
table .add_rows (self ._summary_list )
589
589
table_title = "Summary Data" .center (len (str (table ).split ("\n " )[0 ]), " " )
590
590
table .align ["Operation" ] = "l"
591
- table .align ["Time" ] = "l"
591
+ table .align ["Time (ms) " ] = "l"
592
592
logging .info (table_title )
593
593
logging .info (table )
594
594
@@ -600,7 +600,7 @@ def save_pipeline_data(self, save_path):
600
600
detail_head = [
601
601
"Step" ,
602
602
"Operation" ,
603
- "Time" ,
603
+ "Time (ms) " ,
604
604
]
605
605
csv_data = [detail_head , * self ._detail_list ]
606
606
with open (Path (save_dir ) / "detail.csv" , "w" , newline = "" ) as file :
@@ -610,7 +610,7 @@ def save_pipeline_data(self, save_path):
610
610
summary_head = [
611
611
"Level" ,
612
612
"Operation" ,
613
- "Time" ,
613
+ "Time (ms) " ,
614
614
]
615
615
csv_data = [summary_head , * self ._summary_list ]
616
616
with open (Path (save_dir ) / "summary.csv" , "w" , newline = "" ) as file :
0 commit comments