From d702357aac74204afa0f841494f7f0654bfcb912 Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Tue, 17 Jul 2018 20:07:13 +0700 Subject: [PATCH] Change `License has been activated.` to `License has been activated successfully.` to make sure everyone gets that this is a success message, and not an error message. --- source/net/filebot/Settings.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/net/filebot/Settings.java b/source/net/filebot/Settings.java index c29ac090..606c605e 100644 --- a/source/net/filebot/Settings.java +++ b/source/net/filebot/Settings.java @@ -149,7 +149,7 @@ public final class Settings { public static void configureLicense(File file) { try { - log.info(importLicenseFile(file) + " has been activated."); + log.info(importLicenseFile(file) + " has been activated successfully."); } catch (Throwable e) { log.severe("License Error: " + e.getMessage()); }