Skip to content

Commit 07d8ce0

Browse files
committed
Printing to stdout breaks the LSP server, so use stderr.
Signed-off-by: Karolis Petrauskas <[email protected]>
1 parent 9f03ed4 commit 07d8ce0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/expr/e_action.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ let expand_definition hyp expr
130130
(Util.eprintf ~at:expr "%s" msg);
131131
failwith msg (* SoundnessCheck *)
132132
end;
133-
Util.printf ~at:expr ~prefix:"[INFO]: "
133+
Util.eprintf ~at:expr ~prefix:"[INFO]: "
134134
"Auto-expanding the definition of operator: %s\n" name;
135135
match expr.core with
136136
| Apply ({core=Ix n}, args) ->

0 commit comments

Comments
 (0)