mirror of
https://github.com/RipMeApp/ripme.git
synced 2025-08-22 21:43:06 +02:00
clean up log messages
This commit is contained in:
@@ -112,10 +112,8 @@ public class UpdateUtils {
|
|||||||
logger.error("Error while updating: ", e);
|
logger.error("Error while updating: ", e);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
logger.debug("This version (" + UpdateUtils.getThisJarVersion()
|
logger.info("Running version (" + UpdateUtils.getThisJarVersion()
|
||||||
+ ") is the same or newer than the website's version (" + latestVersion + ")");
|
+ ") is not older than release (" + latestVersion + ")");
|
||||||
logger.info("v" + UpdateUtils.getThisJarVersion() + " is the latest version");
|
|
||||||
logger.debug("Running latest version: " + UpdateUtils.getThisJarVersion());
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -790,7 +790,7 @@ public class Utils {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static String getLocalizedString(String key) {
|
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)));
|
resourceBundle.getString(key)));
|
||||||
return resourceBundle.getString(key);
|
return resourceBundle.getString(key);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user