···2828 | Some (mv, outstanding_execution) ->
2929 Brr.G.stop_timer outstanding_execution;
3030 let msg = Message.Ev.data (Brr.Ev.as_type msg) in
3131- Js_of_ocaml.Console.console##log (Js_of_ocaml.Js.string "Client received the following, to be converted to an OCaml string");
3232- Js_of_ocaml.Console.console##log msg;
3131+ (* Js_of_ocaml.Console.console##log (Js_of_ocaml.Js.string "Client received the following, to be converted to an OCaml string"); *)
3232+ (* Js_of_ocaml.Console.console##log msg; *)
3333 let msg = Js_of_ocaml.Js.to_string msg in
3434 (* log (Printf.sprintf "Client received: %s" msg); *)
3535 mv (Ok (Jsonrpc.response_of_string msg))
+2-2
lib/worker.ml
···99 thread" keeping the page responsive. *)
10101111let server process e =
1212- Jslib.log "Worker received: %s" e;
1212+ (* Jslib.log "Worker received: %s" e; *)
1313 let _, id, call = Jsonrpc.version_id_and_call_of_string e in
1414 Impl.M.bind (process call) (fun response ->
1515 let rtxt = Jsonrpc.string_of_response ~id response in
1616- Jslib.log "Worker sending: %s" rtxt;
1616+ (* Jslib.log "Worker sending: %s" rtxt; *)
1717 Js_of_ocaml.Worker.post_message (Js_of_ocaml.Js.string rtxt);
1818 Impl.M.return ())
1919