File tree 2 files changed +3
-1
lines changed 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -71,6 +71,7 @@ pub fn maybe_save_trace_and_profile(
71
71
let name = sanitize_filename:: sanitize ( name. replace ( "::" , "_" ) ) ;
72
72
let trace_path = save_trace_data ( & name, trace_data) ?;
73
73
if execution_data_to_save. profile {
74
+ // TODO(#3395): Use Ui spinner
74
75
let _spinner = Spinner :: create_with_message ( "Running cairo-profiler" ) ;
75
76
run_profiler ( & name, & trace_path, & execution_data_to_save. additional_args ) ?;
76
77
}
@@ -88,6 +89,7 @@ pub fn maybe_generate_coverage(
88
89
if saved_trace_data_paths. is_empty ( ) {
89
90
print_as_warning ( & anyhow ! ( "No trace data to generate coverage from" ) ) ;
90
91
} else {
92
+ // TODO(#3395): Use Ui spinner
91
93
let _spinner = Spinner :: create_with_message ( "Running cairo-coverage" ) ;
92
94
run_coverage (
93
95
saved_trace_data_paths,
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ impl OutputFormat {
29
29
#[ derive( Debug ) ]
30
30
pub struct Ui {
31
31
output_format : OutputFormat ,
32
- // TODO: Add state here, that can be used for e.g. spinner
32
+ // TODO(3395) : Add state here, that can be used for spinner
33
33
}
34
34
35
35
impl Ui {
You can’t perform that action at this time.
0 commit comments