Replace LOG.error with LOG.warn when reading classfile with ASM
We don't care much if some corrupt file appears to be in our classpath
This commit is contained in:
@@ -63,7 +63,7 @@ public final class KotlinClassFileIndex extends ScalarIndexExtension<FqName> {
|
||||
}
|
||||
}
|
||||
catch (Throwable e) {
|
||||
LOG.error("Error while indexing file " + inputData.getFileName(), e);
|
||||
LOG.warn("Error while indexing file " + inputData.getFileName(), e);
|
||||
}
|
||||
return Collections.emptyMap();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user