Skip to content

Commit

Permalink
default log level is info, not warn
Browse files Browse the repository at this point in the history
  • Loading branch information
c-cube committed Jan 24, 2024
1 parent 4056143 commit 3257c03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/opentheory/logger.ml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ let setup_logs ?(files = []) ~(style : [ `COLOR | `SYSTEMD ]) ~debug ~level () =
(if debug then
Logs.Debug
else
Logs.Warning));
Logs.Info));
Trustee_core.Log.set_level level;
Logs.app (fun k -> k "logs are set up (debug=%b)" debug);
List.iter
Expand Down

0 comments on commit 3257c03

Please sign in to comment.