소스 검색

Add IOException to log message during revealPath

Armin Schrenk 2 년 전
부모
커밋
55d76b65cc
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/main/java/org/cryptomator/ui/mainwindow/VaultDetailUnlockedController.java

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