From 652ae7d33ed1deda3b047bbd74c1b8e99565cab2 Mon Sep 17 00:00:00 2001 From: "Maxim.Mossienko" Date: Tue, 12 Sep 2017 21:50:08 +0200 Subject: [PATCH] Do not write extra index logs by default --- .../src/com/intellij/util/indexing/FileBasedIndexImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/lang-impl/src/com/intellij/util/indexing/FileBasedIndexImpl.java b/platform/lang-impl/src/com/intellij/util/indexing/FileBasedIndexImpl.java index 993875752e50..e2840f0374d8 100644 --- a/platform/lang-impl/src/com/intellij/util/indexing/FileBasedIndexImpl.java +++ b/platform/lang-impl/src/com/intellij/util/indexing/FileBasedIndexImpl.java @@ -2039,7 +2039,7 @@ public class FileBasedIndexImpl extends FileBasedIndex implements BaseComponent, private final List myFiles = new ArrayList<>(); @Nullable private final ProgressIndicator myProgressIndicator; - private final boolean myDoTraceForFilesToBeIndexed = LOG.isDebugEnabled(); + private final boolean myDoTraceForFilesToBeIndexed = LOG.isTraceEnabled(); private UnindexedFilesFinder(@Nullable ProgressIndicator indicator) { myProgressIndicator = indicator;