diff --git a/base/src/com/google/idea/blaze/base/sync/workspace/ArtifactLocationDecoderImpl.java b/base/src/com/google/idea/blaze/base/sync/workspace/ArtifactLocationDecoderImpl.java index 8489ceb0ac9..397219d5ee5 100644 --- a/base/src/com/google/idea/blaze/base/sync/workspace/ArtifactLocationDecoderImpl.java +++ b/base/src/com/google/idea/blaze/base/sync/workspace/ArtifactLocationDecoderImpl.java @@ -98,8 +98,9 @@ public File decode(ArtifactLocation artifactLocation) { return realFile; } } catch (IOException ioException) { - LOG.warn("Failed to resolve real path for " + artifactLocation.getExecutionRootRelativePath(), - ioException); + LOG.warn("Failed to resolve real path for " + artifactLocation.getExecutionRootRelativePath() + + "\n" + ioException.getClass().getSimpleName() + ": " + ioException.getMessage()); + LOG.trace(ioException); } } return null;