From 51b20e793152b8dc439613d71f45f96b9fd34340 Mon Sep 17 00:00:00 2001 From: Josh Elkins Date: Tue, 26 Aug 2025 11:49:14 -0500 Subject: [PATCH] chore: Log AWS SDK CLI commands as they are executed --- AWSSDKSwiftCLI/Sources/AWSCLIUtils/Process+Utils.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AWSSDKSwiftCLI/Sources/AWSCLIUtils/Process+Utils.swift b/AWSSDKSwiftCLI/Sources/AWSCLIUtils/Process+Utils.swift index 4c499e4a86c..2784559b9fb 100644 --- a/AWSSDKSwiftCLI/Sources/AWSCLIUtils/Process+Utils.swift +++ b/AWSSDKSwiftCLI/Sources/AWSCLIUtils/Process+Utils.swift @@ -80,7 +80,7 @@ public struct ProcessRunner { /// /// Runs the process and prints out the process's full command. public static let standard = ProcessRunner { process in - log(level: .debug, "Running process: \(process.commandString)") + log(level: .info, "Running process: \(process.commandString)") try process.run() process.waitUntilExit() let exitCode = ExitCode(process.terminationStatus)