···1919let init
2020 : env: Eio_unix.Stdenv.base -> config: Config.t -> dev: bool -> state
2121 = fun ~env ~config ~dev ->
2222- Logs.debug (fun m -> m "Initializing with config @.%a" Config.pp config);
2222+ Logs.debug (fun m -> m "Initializing with config %a" Config.pp config);
2323 let graphs = (module Forest_graphs.Make (): Forest_graphs.S) in
2424 let parsed = Forest.create 1000 in
2525 let documents = Hashtbl.create 1000 in
···393393 let module EP = Eio.Path in
394394 let@ path = List.iter @~ foreign_paths in
395395 let path_str = EP.native_exn path in
396396- let@ () = Reporter.profile @@ Format.sprintf "Implant foreign forest from `%s'" path_str in
396396+ Reporter.log Format.pp_print_string (Format.sprintf "Implant foreign forest from `%s'" path_str);
397397 let blob = try EP.load path with _ -> Reporter.fatalf IO_error "Could not read foreign forest blob at `%s`" path_str in
398398 match Repr.of_json_string (T.forest_t T.content_t) blob with
399399 | Ok foreign_forest ->