Skip to content

Commit 6c8dc7f

Browse files
authored
Merge pull request #3979 from mtzguido/nit
Reduce excessive debug
2 parents aa695b9 + 0099b4f commit 6c8dc7f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/tactics/FStarC.Tactics.Hooks.fst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -690,8 +690,9 @@ let spinoff_strictly_positive_goals (env:Env.env) (goal:term)
690690
Some (env, t))
691691
in
692692

693-
FStarC.Errors.diag (Env.get_range env)
694-
(Format.fmt1 "Split query into %s sub-goals" (show (List.length gs)));
693+
if !dbg_Tac then
694+
FStarC.Errors.diag (Env.get_range env)
695+
(Format.fmt1 "Split query into %s sub-goals" (show (List.length gs)));
695696

696697
main_goal@gs
697698
)

0 commit comments

Comments
 (0)