Browse Source

Add IOException to log message during revealPath

Armin Schrenk 2 years ago
parent
commit
55d76b65cc

+ 1 - 1
src/main/java/org/cryptomator/ui/mainwindow/VaultDetailUnlockedController.java

@@ -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();
 		}
 	}