fix: add log for file copy #114

Merged
Thibaut merged 1 commits from dev into master 2026-03-18 09:48:37 +00:00
Showing only changes of commit fdd42c6a63 - Show all commits

View File

@ -251,8 +251,9 @@ public class Utils {
} }
File f = file.filePath().toFile(); File f = file.filePath().toFile();
System.out.println(f + " -> " + new File(dirFile, id + "." + detectedExtensions[0]));
//noinspection ResultOfMethodCallIgnored //noinspection ResultOfMethodCallIgnored
f.renameTo(new File(dirFile, id + "." + detectedExtensions[0])); System.out.println(f.renameTo(new File(dirFile, id + "." + detectedExtensions[0])));
return "ok"; return "ok";
}))); })));
} }