Skip to content

Commit 02b98c1

Browse files
committed
Log to stderr
Signed-off-by: Rudi Grinberg <[email protected]>
1 parent e998cc1 commit 02b98c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/memo/memo.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
open !Stdune
1+
open! Stdune
22
open Fiber.O
33

44
module type Input = Memo_intf.Input
@@ -212,7 +212,7 @@ let push_stack_frame frame f =
212212

213213
let dump_stack () =
214214
let stack = get_call_stack () in
215-
Printf.printf "Memoized function stack:\n";
215+
Printf.eprintf "Memoized function stack:\n";
216216
List.iter stack ~f:(fun st ->
217217
Printf.eprintf " %s %s\n"
218218
(Stack_frame.name st)

0 commit comments

Comments
 (0)