Skip to content

Commit

Permalink
#249 - Too many warnings in log (bsconfig not found)
Browse files Browse the repository at this point in the history
  • Loading branch information
giraud committed May 22, 2020
1 parent 10a4157 commit 5ebd1d1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion jps-plugin/src/com/reason/Platform.java
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ public static VirtualFile findContentRootFor(@NotNull Project project, @NotNull
Map<Module, VirtualFile> rootContents = findContentRootsFor(project, filename);

if (rootContents.isEmpty()) {
LOG.warn("No content roots with " + filename + " file found");
//https://github.com/reasonml-editor/reasonml-idea-plugin/issues/249
//LOG.warn("No content roots with " + filename + " file found");
return null;
} else if (rootContents.size() == 1) {
Module module = rootContents.keySet().iterator().next();
Expand Down

0 comments on commit 5ebd1d1

Please sign in to comment.