From 1a6bb83969c3396c805b5028f2d37e270a7dc59d Mon Sep 17 00:00:00 2001 From: ยท๐‘‘๐‘ด๐‘•๐‘‘๐‘ฉ๐‘ค Date: Fri, 19 Dec 2025 17:38:31 +0000 Subject: logging: move manifest ร— lockfile to info --- lib/lockfile.ml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/lockfile.ml') diff --git a/lib/lockfile.ml b/lib/lockfile.ml index f3319a2..4841574 100644 --- a/lib/lockfile.ml +++ b/lib/lockfile.ml @@ -467,12 +467,12 @@ let write ?(create = `Or_truncate 0o644) () : (unit, error) result = in let working_dir = Working_directory.get () in let filepath = Eio.Path.(working_dir / filename) in - Logs.app (fun m -> m "Writing lockfile @@ %s โ€ฆ" filename); + Logs.info (fun m -> m "Writing lockfile @@ %s โ€ฆ" filename); let* result = Eio.Path.with_open_out ~create filepath @@ fun flow -> (* TODO: Util.Jsont.to_flow_piset jsont lock flow *) Util.Jsont.to_flow jsont lock flow |> Result.map_error (fun err -> `Serializing err) in - Logs.app (fun m -> m "Lockfile written."); + Logs.info (fun m -> m "Lockfile written."); Ok result -- cgit v1.2.3