From ad821249564d62764dae2765a9c935b1733e947e Mon Sep 17 00:00:00 2001 From: Phoebe Nichols Date: Tue, 20 Aug 2019 05:52:00 -0700 Subject: [PATCH] Remove logging Summary: I added this logging in D16730426, to try and debug incremental analysis. I don't need the logging anymore, so I'm taking it out. I don't this it's very useful for users. Reviewed By: ezgicicek Differential Revision: D16904498 fbshipit-source-id: 88b0f1cb5 --- infer/src/infer.ml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/infer/src/infer.ml b/infer/src/infer.ml index f091b96c4..db8519487 100644 --- a/infer/src/infer.ml +++ b/infer/src/infer.ml @@ -43,9 +43,7 @@ let setup () = || Config.( continue_capture || infer_is_clang || infer_is_javac || reactive_mode || incremental_analysis) ) - then ( - L.progress "Cleaning results directory@." ; - ResultsDir.remove_results_dir () ) ; + then ResultsDir.remove_results_dir () ; ResultsDir.create_results_dir () ; if CLOpt.is_originator && (not Config.continue_capture)