Show timeouts in progress bar in stats mode

Summary: Show timeouts in progress bar in stats mode

Reviewed By: jvillard

Differential Revision: D3417423

fbshipit-source-id: 44ceb36
master
Josh Berdine 9 years ago committed by Facebook Github Bot 8
parent 3d982b0dbb
commit ce19de4a42

@ -128,7 +128,7 @@ let print_prolog () =
L.stdout "legend:@\n";
L.stdout " \"%s\" analyzing a file@\n" Config.log_analysis_file;
L.stdout " \"%s\" analyzing a procedure@\n" Config.log_analysis_procedure;
if Config.developer_mode then (
if Config.stats_mode then (
L.stdout " \"%s\" analyzer crashed@\n" Config.log_analysis_crash;
L.stdout " \"%s\" timeout: procedure analysis took too much time@\n"
Config.log_analysis_wallclock_timeout;

@ -207,7 +207,7 @@ let log_progress_procedure () =
log_progress_simple Config.log_analysis_procedure
let log_progress_timeout_event failure_kind =
if Config.developer_mode then
if Config.stats_mode then
begin
match failure_kind with
| SymOp.FKtimeout ->

Loading…
Cancel
Save