Demote log level for unavailable packages
Many packages are marked unavailable these days in preparation of opam-repository cleanup \o/ so let's be a little less noisy.
This commit is contained in:
parent
1241753a8c
commit
7a71e095da
1 changed files with 1 additions and 1 deletions
|
@ -156,7 +156,7 @@ module Make
|
||||||
opamfile.file_contents
|
opamfile.file_contents
|
||||||
in
|
in
|
||||||
if unavailable then
|
if unavailable then
|
||||||
(Logs.info (fun m -> m "%s is marked unavailable, skipping" filename);
|
(Logs.debug (fun m -> m "%s is marked unavailable, skipping" filename);
|
||||||
None)
|
None)
|
||||||
else
|
else
|
||||||
let url_section =
|
let url_section =
|
||||||
|
|
Loading…
Reference in a new issue