Removed errorCode for raw configuration parsing errors.

This commit is contained in:
Michele Sollecito 2018-11-19 16:47:57 +00:00
parent ddf45f4e07
commit b9f2401123

View File

@ -75,7 +75,7 @@ open class SharedNodeCmdLineOptions {
errors.forEach { error ->
when (error) {
is ConfigException.IO -> logger.error(configFileNotFoundMessage(configFile))
else -> logger.error(error.message, error)
else -> logger.error(error.message)
}
}
}