1
0
mirror of https://github.com/mitb-archive/filebot synced 2025-03-09 13:59:49 -04:00

Add additional logging output so user can see exactly where the license file was stored to (i.e. which users user home)

This commit is contained in:
Reinhard Pointner 2019-03-11 01:12:30 +07:00
parent 1629352881
commit 7c20fc1ab9

View File

@ -181,7 +181,7 @@ public class License {
File file = License.FILE.get(); File file = License.FILE.get();
// write to default license file path // write to default license file path
log.finest(format("Write [%s] to [%s]", license, file)); log.config(format("Write [%s] to [%s]", license, file));
Files.write(file.toPath(), psm.getBytes(UTF_8)); Files.write(file.toPath(), psm.getBytes(UTF_8));
// clear memoized instance and reload on next access // clear memoized instance and reload on next access