Skip to content

Commit

Permalink
log path
Browse files Browse the repository at this point in the history
  • Loading branch information
jperedadnr committed Oct 18, 2024
1 parent 224fb9c commit 954247a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ private MobileProvision getProvisioningProfile() throws IOException {
if (providedMobileProvision == null
|| providedMobileProvision.equals(mobileProvision.getName())) {
this.identity = identity;
Logger.logDebug("Got provisioning profile: " + mobileProvision.getName());
Logger.logDebug("Got provisioning profile: " + mobileProvision.getName() + " from " + mobileProvision.getProvisioningPath());
return mobileProvision;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,8 @@ private ProvisionProfile getProvisioningProfile() {
.findFirst()
.orElse(null);
}
Logger.logDebug("Provisioning profile: " + (provisionProfile != null ? provisionProfile.getName() : null));
Logger.logDebug("Got provisioning profile: " + (provisionProfile != null ?
provisionProfile.getName() + " from " + provisionProfile.getProvisioningPath() : null));
return provisionProfile;
}

Expand Down

0 comments on commit 954247a

Please sign in to comment.