Skip to content

Commit 320cf57

Browse files
committed
[bugfix] As these are plugins log a Warning and not an Error if the plugin is unavailable
1 parent e013cd0 commit 320cf57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exist-core/src/main/java/org/exist/plugin/PluginsManagerImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ public void addPlugin(final String className) {
241241
// NOTE: must set interrupted flag
242242
Thread.currentThread().interrupt();
243243
}
244-
LOG.error(e);
244+
LOG.warn(e);
245245
}
246246
}
247247

0 commit comments

Comments
 (0)