File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -220,11 +220,9 @@ reportMissingPackages (PackagesLookupResult found foundWithoutPrefix notFound) =
220220 [ " The following packages do not exist in your package set:" ]
221221 <> (fmap (\ (NotFoundError (PackageName packageName)) -> display $ " - " <> packageName) $ List. sort notFound)
222222
223- for_ foundWithoutPrefix $ \ (FoundWithoutPrefix sansPrefix) ->
224- logWarn
225- $ display
226- $ " The package 'purescript-" <> packageName sansPrefix <> " ' was not found in your package set, but '"
227- <> packageName sansPrefix <> " ' was. Using that instead."
223+ for_ foundWithoutPrefix $ \ (FoundWithoutPrefix (PackageName sansPrefix)) ->
224+ logInfo $ display
225+ $ " The package 'purescript-" <> sansPrefix <> " ' was resolved to the '" <> sansPrefix <> " ' package"
228226 pure found
229227
230228
Original file line number Diff line number Diff line change 1- [33m[warn ] [0mThe package 'purescript-newtype' was not found in your package set, but 'newtype' was. Using that instead. [0m
1+ [34m[info ] [0mThe package 'purescript-newtype' was resolved to the 'newtype' package [0m
22[34m[info] [0mInstalling 1 dependencies.[0m
33[34m[info] [0mSearching for packages cache metadata..[0m
44[34m[info] [0mRecent packages cache metadata found, using it..[0m
You can’t perform that action at this time.
0 commit comments