Skip to content

Commit 9f78e30

Browse files
committed
Remove debug output
1 parent b3b3eb9 commit 9f78e30

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

swift/example_code/support/scenario/Sources/Scenario.swift

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -292,20 +292,15 @@ class Scenario {
292292
/// - Returns: An array of services.
293293
func getServices() async -> [SupportClientTypes.Service] {
294294
do {
295-
print("Calling describeServices...")
296295
let output = try await supportClient.describeServices(
297296
input: DescribeServicesInput()
298297
)
299298

300-
print("Back from describeServices.")
301-
302299
guard let services = output.services else {
303300
print("No service list returned.")
304301
return []
305302
}
306303

307-
print("Found \(services.count) services.")
308-
309304
return services
310305
} catch let error as AWSServiceError {
311306
// SubscriptionRequiredException isn't a modeled error, so we

0 commit comments

Comments
 (0)