Skip to content

Commit 683c7dd

Browse files
committed
adjust unlock & mount success message
1 parent 6f0425a commit 683c7dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/cryptomator/cli/Unlock.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public Integer call() throws Exception {
8484

8585
try (var fs = CryptoFileSystemProvider.newFileSystem(pathToVault, fsPropsBuilder.build());
8686
var mount = mountSetup.mount(fs)) {
87-
System.out.println(mount.getMountpoint().uri());
87+
LOG.info("Unlocked and mounted vault successfully to {}", mount.getMountpoint().uri());
8888
Runtime.getRuntime().addShutdownHook(new Thread(() -> teardown(mount)));
8989
Thread.currentThread().join();
9090
}

0 commit comments

Comments
 (0)