diff --git a/src/main/java/com/exactpro/th2/inframgr/repository/RepositoryWatcherService.java b/src/main/java/com/exactpro/th2/inframgr/repository/RepositoryWatcherService.java index 35b0819..44c7c7f 100644 --- a/src/main/java/com/exactpro/th2/inframgr/repository/RepositoryWatcherService.java +++ b/src/main/java/com/exactpro/th2/inframgr/repository/RepositoryWatcherService.java @@ -78,7 +78,7 @@ private void scheduledJob() { GitterContext ctx = GitterContext.getContext(config); Map commits = ctx.getAllBranchesCommits(); LOGGER.info("Fetched branches: {}, current/previous branch count: {}/{}", - commits, commits.size(), prevBranchCount); + commits.keySet(), commits.size(), prevBranchCount); if (prevBranchCount > commits.size()) { removeExtinctedNamespaces(commits.keySet()); } else {