Skip to content
Snippets Groups Projects
Commit f3c64e98 authored by Kilyan Le Gallic's avatar Kilyan Le Gallic
Browse files

[wp] Switched debug level from 1 to 0 to reduce command length

parent 08d13348
No related branches found
No related tags found
No related merge requests found
...@@ -30,12 +30,12 @@ let () = ...@@ -30,12 +30,12 @@ let () =
let libs = L.Library.get () in let libs = L.Library.get () in
List.iter List.iter
(fun dir -> (fun dir ->
L.debug ~level:1 " + LIB %a@." Filepath.Normalized.pretty dir L.debug ~level:0 " + LIB %a@." Filepath.Normalized.pretty dir
) libs ; ) libs ;
let thys = L.Import.get () in let thys = L.Import.get () in
List.iter List.iter
(fun thy -> (fun thy ->
L.debug ~level:1 " + THY %s@." thy L.debug ~level:0 " + THY %s@." thy
) thys ; ) thys ;
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment