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:
Alexander Udalov
2013-09-06 20:51:51 +04:00
parent c0a4d8d24f
commit f63e3da594
@@ -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();
}