[cost] Change complexity increase message to include UI thread warning

Reviewed By: ngorogiannis

Differential Revision: D18475813

fbshipit-source-id: a1c9a5f7c
master
Ezgi Çiçek 5 years ago committed by Facebook Github Bot
parent ecc5c80a9b
commit 6fa25b7464

@ -247,10 +247,12 @@ let issue_of_cost kind CostIssues.{complexity_increase_issue; zero_issue; infini
"Please make sure this is an expected change. You can inspect the trace to understand \ "Please make sure this is an expected change. You can inspect the trace to understand \
the complexity increase:" the complexity increase:"
in in
let cold_start_msg = let cold_start_or_ui_msg =
if ExternalPerfData.in_profiler_data_map procname then let common_msg = "It is very important to avoid potential regressions in this phase." in
"This function is called during cold start. It is very important to avoid potential \ if is_on_ui_thread then
regressions in this phase." Format.asprintf "This function is called on the UI Thread! %s" common_msg
else if ExternalPerfData.in_profiler_data_map procname then
Format.asprintf "This function is called during cold start! %s" common_msg
else "" else ""
in in
let msg = let msg =
@ -268,7 +270,7 @@ let issue_of_cost kind CostIssues.{complexity_increase_issue; zero_issue; infini
(MarkupFormatter.wrap_monospaced (CostItem.pp_degree ~only_bigO:true)) (MarkupFormatter.wrap_monospaced (CostItem.pp_degree ~only_bigO:true))
prev_item prev_item
(MarkupFormatter.wrap_monospaced (CostItem.pp_degree ~only_bigO:true)) (MarkupFormatter.wrap_monospaced (CostItem.pp_degree ~only_bigO:true))
curr_item cold_start_msg pp_extra_msg () curr_item cold_start_or_ui_msg pp_extra_msg ()
in in
let line = cost_info.Jsonbug_t.loc.lnum in let line = cost_info.Jsonbug_t.loc.lnum in
let column = cost_info.Jsonbug_t.loc.cnum in let column = cost_info.Jsonbug_t.loc.cnum in

Loading…
Cancel
Save