aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2018-12-05 16:09:36 +0100
committerPierre-Marie Pédrot2019-02-05 12:09:44 +0100
commit151ec20b1202df17b75a7c8d3fe9f8ff258a88bd (patch)
tree155191f6c749036ad6b1c779e2714cb0fb597802 /plugins
parent785d2008988d73d2ec1c93940d9c93084d1acbbc (diff)
Unset the Ltac backtrace printing by default.
This is only used for debugging, if a user wants more feedback she can turn on the option. Conversely, it has a cost for any tactic script, so it is wiser to disable it by default.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/ltac/tacinterp.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ltac/tacinterp.ml b/plugins/ltac/tacinterp.ml
index b55cb08c90..31e6b4c28f 100644
--- a/plugins/ltac/tacinterp.ml
+++ b/plugins/ltac/tacinterp.ml
@@ -117,7 +117,7 @@ let combine_appl appl1 appl2 =
let of_tacvalue v = in_gen (topwit wit_tacvalue) v
let to_tacvalue v = out_gen (topwit wit_tacvalue) v
-let log_trace = ref true
+let log_trace = ref false
let is_traced () =
!log_trace || !Flags.profile_ltac