Add IOException to log message during revealPath

This commit is contained in:
Armin Schrenk
2023-02-01 22:31:27 +01:00
parent fd6e1e6741
commit 55d76b65cc

View File

@@ -171,7 +171,7 @@ public class VaultDetailUnlockedController implements FxController {
}
return Optional.of(vault.get().getCiphertextPath(cleartextPath));
} catch (IOException e) {
LOG.warn("Unable to get ciphertext path from path: {}", path);
LOG.warn("Unable to get ciphertext path from path: {}", path, e);
return Optional.empty();
}
}