Skip to content

Commit 59ddbae

Browse files
committed
Change log to error if a plugin couldn't be loaded due to a dependency problem
1 parent 0ae8a63 commit 59ddbae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

grails-core/src/main/groovy/grails/plugins/DefaultGrailsPluginManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ private void loadDelayedPlugins() {
478478
}
479479
else {
480480
failedPlugins.put(plugin.getName(), plugin);
481-
LOG.warn("WARNING: Plugin [" + plugin.getName() + "] cannot be loaded because its dependencies [" +
481+
LOG.error("ERROR: Plugin [" + plugin.getName() + "] cannot be loaded because its dependencies [" +
482482
DefaultGroovyMethods.inspect(plugin.getDependencyNames()) + "] cannot be resolved");
483483
}
484484
}

0 commit comments

Comments
 (0)