Disable verbose logging

This commit is contained in:
Maschell 2020-07-10 17:54:02 +02:00
parent 89d15fb80c
commit a18b059004
1 changed files with 1 additions and 1 deletions

View File

@ -170,7 +170,7 @@ public class Main {
RootFuseFS stub = new RootFuseFS(root);
try {
System.out.println("Mounting " + new File(inputPath).getAbsolutePath() + " to " + mount.getAbsolutePath());
stub.mount(mount.toPath(), true, true);
stub.mount(mount.toPath(), true, false);
} finally {
stub.umount();
}