[platform] less noisy logging on refreshing output roots

GitOrigin-RevId: 032915f446aac8f9da6b4b816a38128edd2895ce
This commit is contained in:
Roman Shevchenko
2025-04-14 09:32:40 +00:00
committed by intellij-monorepo-bot
parent e4f3444eed
commit a41a8749ee
@@ -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);