fix: restore default of stderrAsMessages (#3733)

Puts trace.compiler back in the info view. Apparently an unintended
change in #3014.
This commit is contained in:
Sebastian Ullrich 2024-03-21 18:43:29 +01:00 committed by GitHub
parent 31767aa835
commit 085d01942d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -71,7 +71,7 @@ private def pushOpt (a? : Option α) (as : Array α) : Array α :=
/-- Option for capturing output to stderr during elaboration. -/
register_builtin_option stderrAsMessages : Bool := {
defValue := false
defValue := true
group := "server"
descr := "(server) capture output to the Lean stderr channel (such as from `dbg_trace`) during elaboration of a command as a diagnostic message"
}