Skip to content

Commit

Permalink
TS-40724 Improved log message
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominik Klein committed Nov 11, 2024
1 parent 8c8b7fa commit 141393e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/com/teamscale/upload/xcode/XcodeVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ public static XcodeVersion determine() {
ProcessUtils.ProcessResult result = ProcessUtils.run("xcodebuild", "-version");
if (!result.wasSuccessful()) {
LogUtils.warn("Could not determine installed Xcode version. Assuming latest Xcode version is installed.");
LogUtils.debug("Error whilst running 'xcodebuild -version' command: ", result.exception);
LogUtils.debug("Error whilst running 'xcodebuild -version' command: " + result.errorOutput,
result.exception);
return latestVersion();
}

Expand Down

0 comments on commit 141393e

Please sign in to comment.