Warning instead of error when package is not there.

This commit is contained in:
Rik van der Kleij 2020-02-02 19:57:15 +01:00
parent 8a41115958
commit fb7ee53877

View File

@ -81,7 +81,7 @@ private[component] object LibraryPackageInfoComponent {
private def findPackageInfo(key: Key): Result = {
// Because preloadLibraryModuleNames should already have done all the work, something is wrong if this method is called
HaskellNotificationGroup.logErrorBalloonEvent(key.project, s"Package ${key.packageName} is not in library module names cache")
HaskellNotificationGroup.logWarningEvent(key.project, s"Package ${key.packageName} is not in library module names cache")
None
}