1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-22 13:33:18 +02:00

clean up log messages

This commit is contained in:
soloturn
2022-04-25 09:14:53 +02:00
parent e0e58c1435
commit 3a9f5b51f7
2 changed files with 3 additions and 5 deletions

View File

@@ -112,10 +112,8 @@ public class UpdateUtils {
logger.error("Error while updating: ", e);
}
} else {
logger.debug("This version (" + UpdateUtils.getThisJarVersion()
+ ") is the same or newer than the website's version (" + latestVersion + ")");
logger.info("v" + UpdateUtils.getThisJarVersion() + " is the latest version");
logger.debug("Running latest version: " + UpdateUtils.getThisJarVersion());
logger.info("Running version (" + UpdateUtils.getThisJarVersion()
+ ") is not older than release (" + latestVersion + ")");
}
}

View File

@@ -790,7 +790,7 @@ public class Utils {
}
public static String getLocalizedString(String key) {
LOGGER.debug(String.format("Getting key %s in %s value %s", key, getSelectedLanguage(),
LOGGER.debug(String.format("Key %s in %s is: %s", key, getSelectedLanguage(),
resourceBundle.getString(key)));
return resourceBundle.getString(key);
}