From 7c20fc1ab9f0b9367d6a97af97f42118281e9f20 Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Mon, 11 Mar 2019 01:12:30 +0700 Subject: [PATCH] Add additional logging output so user can see exactly where the license file was stored to (i.e. which users user home) --- source/net/filebot/License.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/net/filebot/License.java b/source/net/filebot/License.java index a1bacad3..170de2b3 100644 --- a/source/net/filebot/License.java +++ b/source/net/filebot/License.java @@ -181,7 +181,7 @@ public class License { File file = License.FILE.get(); // 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)); // clear memoized instance and reload on next access