Don't pollute idea.log with periodic messages from TaskManagerImpl

This commit is contained in:
Mikhail Golubev
2017-03-23 13:56:33 +03:00
parent fdc7654b9a
commit b9d826c7ef
@@ -796,7 +796,7 @@ public class TaskManagerImpl extends TaskManager implements ProjectComponent, Pe
long start = System.currentTimeMillis();
Task[] tasks = repository.getIssues(request, offset, limit, withClosed, cancelled);
long timeSpent = System.currentTimeMillis() - start;
LOG.info(String.format("Total %s ms to download %d issues from '%s' (pattern '%s')",
LOG.debug(String.format("Total %s ms to download %d issues from '%s' (pattern '%s')",
timeSpent, tasks.length, repository.getUrl(), request));
myBadRepositories.remove(repository);
if (issues == null) issues = new ArrayList<>(tasks.length);