This commit is contained in:
2022-10-13 12:54:31 +03:00
parent 9b9c5c9d52
commit 6a2048b48e

View File

@ -38,7 +38,7 @@ public class Version {
if (is != null) {
loadVersion(version, is);
} else {
LOGGER.warn("No version resource at " + versionPath + " Trying to load it from the main package...");
LOGGER.warn("No version resource at {} Trying to load it from the main package...", versionPath);
final InputStream oldStream = Version.class.getResourceAsStream(VERSION_FILE);
if (oldStream != null)
loadVersion(version, oldStream);