Add a bunch more "logging" throughout signing

This commit is contained in:
Nythepegasus
2022-12-03 17:25:15 -05:00
committed by Joseph Mattello
parent 4a5ca81e9a
commit 4c441077c7
6 changed files with 25 additions and 3 deletions

View File

@@ -305,6 +305,8 @@ public struct BeginInstallationRequest: ServerMessageProtocol
{
self.activeProfiles = activeProfiles
self.bundleIdentifier = bundleIdentifier
print("BeginInstallationRequest `activeProfiles`: \(String(describing: activeProfiles))")
print("BeginInstallationRequest `bundleIdentifier`: \(String(describing: bundleIdentifier))")
}
}
@@ -346,6 +348,9 @@ public struct InstallProvisioningProfilesRequest: ServerMessageProtocol
self.udid = udid
self.provisioningProfiles = provisioningProfiles
self.activeProfiles = activeProfiles
print("InstallProvisioningProfilesRequest `self.udid`: \(self.udid)")
print("InstallProvisioningProfilesRequest `self.provisioningProfiles`: \(self.provisioningProfiles)")
print("InstallProvisioningProfilesRequest `self.activeProfiles`: \(String(describing: self.activeProfiles))")
}
public init(from decoder: Decoder) throws