From a41a8749eee4fdf06f203b9a344d58f59ca69e81 Mon Sep 17 00:00:00 2001 From: Roman Shevchenko Date: Mon, 14 Apr 2025 08:59:35 +0200 Subject: [PATCH] [platform] less noisy logging on refreshing output roots GitOrigin-RevId: 032915f446aac8f9da6b4b816a38128edd2895ce --- .../impl/src/com/intellij/compiler/impl/CompilerUtil.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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);