We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d4b6a4 commit 67127e6Copy full SHA for 67127e6
core/config/src/main/java/io/gatehill/imposter/config/util/ConfigUtil.kt
@@ -189,7 +189,7 @@ object ConfigUtil {
189
190
for (configFile in configFiles) {
191
try {
192
- LOGGER.debug("Loading configuration file: {}", configFile)
+ LOGGER.debug("Loading configuration file: {}", configFile.file)
193
configCount++
194
195
// load to determine plugin
@@ -209,7 +209,12 @@ object ConfigUtil {
209
}
210
211
212
- LOGGER.trace("Loaded $configCount plugin configuration file(s) with $errorCount error(s): $configFiles")
+ LOGGER.trace(
213
+ "Loaded {} plugin configuration file(s) with {} error(s): {}",
214
+ configCount,
215
+ errorCount,
216
+ configFiles
217
+ )
218
return allPluginConfigs
219
220
0 commit comments