Skip to content

Commit

Permalink
Merge branch 'master' into bump-jetbrains-ides-7
Browse files Browse the repository at this point in the history
  • Loading branch information
mai93 authored Mar 22, 2024
2 parents 7ecd0b9 + efe6b2a commit b066389
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit b066389

Please sign in to comment.