···295295 dcs.dcs_toplevel_modules;
296296297297 let new_load ~s ~old_loader ~allow_hidden ~unit_name =
298298- Logs.info (fun m -> m "%s Loading: %s" s unit_name);
298298+ (* Logs.info (fun m -> m "%s Loading: %s" s unit_name); *)
299299 let filename = filename_of_module unit_name in
300300301301 let fs_name = Filename.(concat path filename) in
302302 (* Check if it's already been downloaded. This will be the
303303 case for all toplevel cmis. Also check whether we're supposed
304304 to handle this cmi *)
305305- if Sys.file_exists fs_name
305305+ (* if Sys.file_exists fs_name
306306 then Logs.info (fun m -> m "Found: %s" fs_name)
307307- else Logs.info (fun m -> m "No sign of %s locally" fs_name);
307307+ else Logs.info (fun m -> m "No sign of %s locally" fs_name); *)
308308 if
309309 (not (Sys.file_exists fs_name))
310310 && List.exists
+2-2
lib/worker.ml
···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···9696 let rpc_fn = Impl.IdlM.server Server.implementation in
9797 Js_of_ocaml.Worker.set_onmessage (fun x ->
9898 let s = Js_of_ocaml.Js.to_string x in
9999- Logs.debug (fun m -> m "Worker received: %s" s);
9999+ Jslib.log "Worker received: %s" s;
100100 ignore (server rpc_fn s));
101101 Console.console##log (Js.string "All finished")
102102 with e ->