Log an exception after catching it https://github.com/spring-projects/spring-vault/blob/main/spring-vault-core/src/main/java/org/springframework/vault/core/util/KeyValueDelegate.java#L121C2-L138C1 ```java public MountInfo getMountInfo(String path) { MountInfo mountInfo = this.mountInfo.get(path); if (mountInfo == null) { try { mountInfo = doGetMountInfo(path); } catch (RuntimeException e) { mountInfo = MountInfo.unavailable(); } this.mountInfo.put(path, mountInfo); } return mountInfo; } ```