Disable verbose logging

This commit is contained in:
Maschell 2020-07-10 17:54:02 +02:00
parent 89d15fb80c
commit a18b059004

View File

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