[aether-resolver] StrictLocalRepositoryManager: reduce logging

Don't report full stacktrace of warnings

GitOrigin-RevId: 2f53458e598b73a19921a2b72a7c61b65c08dec6
This commit is contained in:
Vladislav.Yaroshchuk
2023-03-29 11:31:23 +04:00
committed by intellij-monorepo-bot
parent 5444857716
commit 50cdd2ee26

View File

@@ -41,7 +41,7 @@ class StrictLocalRepositoryManager implements LocalRepositoryManager {
entriesCount = zip.size(); entriesCount = zip.size();
} }
catch (IOException e) { catch (IOException e) {
LOG.warn("Unable to read a number of entries in " + archive, e); LOG.warn("Unable to read a number of entries in " + archive + ": " + e.getMessage());
entriesCount = 0; entriesCount = 0;
} }
if (entriesCount <= 0) { if (entriesCount <= 0) {