Skip to content

Commit f146ac9

Browse files
committed
better logs
1 parent 063d6de commit f146ac9

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

jscomp/bsb/bsb_world.ml

+4-3
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ let make_world_deps cwd (config : Bsb_config_types.t option) (ninja_args : strin
6161
| Expect_none -> ()
6262
| Expect_name s ->
6363
begin
64-
output_string stdout ("Start building dependency " ^ s ^ "\n");
64+
print_endline ("Dependency\t" ^ s );
6565
let lib_bs_dir = proj_dir // lib_artifacts_dir in
6666
Bsb_build_util.mkp lib_bs_dir;
6767
let _config : _ option =
@@ -97,6 +97,7 @@ let make_world_deps cwd (config : Bsb_config_types.t option) (ninja_args : strin
9797
if eid <> 0 then
9898
Bsb_unix.command_fatal_error install_command eid;
9999
Bsb_log.info "@{<info>Installation finished@}@.";
100-
output_string stdout ("Finish building dependency " ^ s ^ "\n")
100+
101101
end
102-
)
102+
);
103+
print_endline "Dependency\tDone."

0 commit comments

Comments
 (0)