We use grails.config.locations to pull in (optional) settings from a file external to the app. Is there a good way to detect that this file was loaded, either in Bootstrap.groovy or within Config.groovy itself?
Config.groovy has this:
grails.config.locations = [
"file:${userHome}/.grails/${appName}-config.groovy"
]
It'd be nice to know if Grails found and read in this file.