Do not write extra index logs by default

This commit is contained in:
Maxim.Mossienko
2017-09-12 21:50:08 +02:00
parent 371a9d72c3
commit 652ae7d33e

View File

@@ -2039,7 +2039,7 @@ public class FileBasedIndexImpl extends FileBasedIndex implements BaseComponent,
private final List<VirtualFile> 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;