1234567891011121314151617181920212223242526272829303132333435363738(* YOCaml a static blog generator.
Copyright (C) 2024 The Funkyworkers and The YOCaml's developers
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. *)typelevel=[`App|`Error|`Warning|`Info|`Debug]letlevel_to_logs=function|`App->Logs.App|`Error->Logs.Error|`Warning->Logs.Warning|`Info->Logs.Info|`Debug->Logs.Debugletmsg?srclevelmessage=letlevel=level_to_logslevelinLogs.msg?srclevel(funprint->print"%s"message)letsetup?level()=matchlevelwith|None->()|Somelevel->letlevel=level_to_logslevelinletheader=Logs_fmt.pp_headerinlet()=Fmt_tty.setup_std_outputs()inlet()=Logs.set_reporterLogs_fmt.(reporter~pp_header:header())inLogs.set_level(Somelevel)