fixes exception message

This commit is contained in:
spencergibb
2021-12-10 12:57:47 -05:00
parent 583709f132
commit 486f100f07

View File

@@ -74,7 +74,7 @@ public class ZookeeperConfigDataLoader implements ConfigDataLoader<ZookeeperConf
}
catch (Exception e) {
if (log.isDebugEnabled()) {
log.debug("Error getting properties from consul: " + resource, e);
log.debug("Error getting properties from zookeeper: " + resource, e);
}
throw new ConfigDataResourceNotFoundException(resource, e);
}