codeconsole commented on PR #15969: URL: https://github.com/apache/grails-core/pull/15969#issuecomment-4941056295
@jdaugherty updated the PR to address your concern. The per-plugin messages are still DEBUG, but startup now emits a single INFO summary that lists every loaded plugin with its version, in load order: ``` INFO ... g.plugins.DefaultGrailsPluginManager : Loaded 20 Grails plugins in load order: [dataBinding (8.0.0-SNAPSHOT), restResponder (8.0.0-SNAPSHOT), i18n (8.0.0-SNAPSHOT), core (8.0.0-SNAPSHOT), ...] ``` So the load order and versions are still in every startup log / support ticket at default levels — just on one line instead of 20+. If you need the verbose per-plugin trace, `logging.level.grails.plugins.DefaultGrailsPluginManager=DEBUG` restores it. Also added a regression test that registers two plugins in reverse of their load order (via `loadAfter`) and asserts the summary line reports them in the correct load order at INFO. -- 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]
