10000 Show dune cache location info in log by nojb · Pull Request #8974 · ocaml/dune · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Show dune cache location info in log #8974

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Oct 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions bin/common.ml
Original file line number Diff line number Diff line change
Expand Up @@ -1249,6 +1249,11 @@ let init (builder : Builder.t) =
}
in
Log.info [ Pp.textf "Shared cache: %s" (Config.Toggle.to_string config.cache_enabled) ];
Log.info
[ Pp.textf
"Shared cache location: %s"
(Path.to_string Dune_cache_storage.Layout.root_dir)
];
let action_runner =
match builder.action_runner with
| No -> None
Expand Down
1 change: 1 addition & 0 deletions doc/changes/8974.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Display cache location in Dune log (#8974, @nojb)
0