codeconsole opened a new pull request, #15969: URL: https://github.com/apache/grails-core/pull/15969
The per-plugin "Grails plug-in [...] loaded successfully" messages from `DefaultGrailsPluginManager` and `DefaultPluginDiscovery` add 20+ INFO lines to every application startup: ``` 2026-06-23T17:10:08.458-06:00 INFO 48669 --- [ restartedMain] g.plugins.DefaultGrailsPluginManager : Grails plug-in [dataBinding] with version [8.0.0-SNAPSHOT] loaded successfully 2026-06-23T17:10:08.459-06:00 INFO 48669 --- [ restartedMain] g.plugins.DefaultGrailsPluginManager : Grails plug-in [sitemesh3] with version [8.0.0-SNAPSHOT] loaded successfully ... ``` This lowers both emitters to DEBUG to reduce startup noise. The "plugin X is disabled and was not loaded" message stays at INFO since it is actionable. Includes a regression test in `DefaultGrailsPluginManagerSpec` that loads a plugin through `DefaultPluginDiscovery` + `loadPlugins()` and asserts the message is no longer emitted at INFO (verified to fail against the previous `LOG.info` code). -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
