diff --git a/Sources/GenIR/CompilerCommandRunner.swift b/Sources/GenIR/CompilerCommandRunner.swift index dc453de..bf2148f 100644 --- a/Sources/GenIR/CompilerCommandRunner.swift +++ b/Sources/GenIR/CompilerCommandRunner.swift @@ -65,7 +65,7 @@ struct CompilerCommandRunner { continue } - GenIRLogger.logger.debug("Operating on target: \(target.name). Total modules processed: \(totalModulesRun)") + GenIRLogger.logger.info("Operating on target: \(target.name). Total modules processed: \(totalModulesRun)") totalModulesRun += try run(commands: targetCommands, for: target.productName, at: output) } diff --git a/Sources/GenIR/GenIR.swift b/Sources/GenIR/GenIR.swift index 10d7fe7..fc3cdbd 100644 --- a/Sources/GenIR/GenIR.swift +++ b/Sources/GenIR/GenIR.swift @@ -213,6 +213,7 @@ struct DebuggingOptions: ParsableArguments { let output = archive.appendingPathComponent("IR") let log = try logParser(for: log) + GenIRLogger.logger.info("Processing the xcodebuild log.") try log.parse() // Find and parse the PIF cache @@ -250,7 +251,7 @@ struct DebuggingOptions: ParsableArguments { buildCacheManipulator: buildCacheManipulator, dryRun: dryRun ) - GenIRLogger.logger.debug("Targets to run: \(targets.count)") + GenIRLogger.logger.info("Targets to process: \(targets.count)") try runner.run(targets: targets, commands: targetCommands) let postprocessor = try OutputPostprocessor( diff --git a/Sources/GenIR/Versions.swift b/Sources/GenIR/Versions.swift index e41a483..8c75e08 100644 --- a/Sources/GenIR/Versions.swift +++ b/Sources/GenIR/Versions.swift @@ -5,7 +5,8 @@ // Created by Thomas Hedderwick on 12/09/2022. // // History: -// 2025-nn-nn - 1.0.0 -- Don't chase through Dynamic Dependencies +// 2025-nn-nn - 1.0.1 -- Use info logging to allow user to monitor progress. +// 2025-12-01 - 1.0.0 -- Don't chase through Dynamic Dependencies // 2025-09-19 - 0.5.4 -- Update release doc; warn multiple builds; capture debug data // 2025-04-18 - 0.5.3 -- PIF Tracing; log unique compiler commands // 2025-04-09 - 0.5.2 -- PIF sort workspace; log instead of throw @@ -14,5 +15,5 @@ import Foundation enum Versions { - static let version = "1.0.0" + static let version = "1.0.1" }