From fb7ee53877ad9054303c2a0db5ee79366dbac87b Mon Sep 17 00:00:00 2001 From: Rik van der Kleij Date: Sun, 2 Feb 2020 19:57:15 +0100 Subject: [PATCH] Warning instead of error when package is not there. --- .../external/component/LibraryPackageInfoComponent.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/scala/intellij/haskell/external/component/LibraryPackageInfoComponent.scala b/src/main/scala/intellij/haskell/external/component/LibraryPackageInfoComponent.scala index 2f570953..6e656f75 100644 --- a/src/main/scala/intellij/haskell/external/component/LibraryPackageInfoComponent.scala +++ b/src/main/scala/intellij/haskell/external/component/LibraryPackageInfoComponent.scala @@ -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 }