diff --git a/java/compiler/impl/src/com/intellij/compiler/impl/CompilerUtil.java b/java/compiler/impl/src/com/intellij/compiler/impl/CompilerUtil.java index ee2792d44f1e..edcab2203514 100644 --- a/java/compiler/impl/src/com/intellij/compiler/impl/CompilerUtil.java +++ b/java/compiler/impl/src/com/intellij/compiler/impl/CompilerUtil.java @@ -45,7 +45,8 @@ public final class CompilerUtil { attributes = Files.readAttributes(outputPath, BasicFileAttributes.class); } catch (IOException | InvalidPathException e) { - LOG.info(e); + LOG.info(e.getClass().getName() + ": " + e.getMessage()); + LOG.debug(e); } var vFile = fs.findFileByPath(outputRoot);