Build Information
Successful build of clt-logger, reference 1.0.0 (db7f3f), with Swift 6.3 for macOS (SPM) on 17 Apr 2026 02:05:47 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/xcode-actions/clt-logger.git
Reference: 1.0.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/xcode-actions/clt-logger
* tag 1.0.0 -> FETCH_HEAD
HEAD is now at db7f3f7 Remove the Package.resolved file
Cloned https://github.com/xcode-actions/clt-logger.git
Revision (git rev-parse @):
db7f3f71ace4e3bd316f98a52b9ee488bb2e66da
SUCCESS checkout https://github.com/xcode-actions/clt-logger.git at 1.0.0
Fetching https://github.com/apple/swift-log.git
[1/6611] Fetching swift-log
Fetched https://github.com/apple/swift-log.git from cache (1.12s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.12.0 (1.82s)
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.12.0
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
"identity": ".resolve-product-dependencies",
"name": "resolve-dependencies",
"url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"traits": [
"default"
],
"dependencies": [
{
"identity": "clt-logger",
"name": "clt-logger",
"url": "https://github.com/xcode-actions/clt-logger.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/clt-logger",
"traits": [
"default"
],
"dependencies": [
{
"identity": "swift-log",
"name": "swift-log",
"url": "https://github.com/apple/swift-log.git",
"version": "1.12.0",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swift-log",
"traits": [
],
"dependencies": [
]
}
]
}
]
}
Fetching https://github.com/xcode-actions/clt-logger.git
[1/869] Fetching clt-logger
Fetched https://github.com/xcode-actions/clt-logger.git from cache (1.24s)
Fetching https://github.com/apple/swift-log.git from cache
Fetched https://github.com/apple/swift-log.git from cache (0.54s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.12.0 (0.63s)
Creating working copy for https://github.com/xcode-actions/clt-logger.git
Working copy of https://github.com/xcode-actions/clt-logger.git resolved at 1.0.0 (db7f3f7)
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.12.0
warning: '.resolve-product-dependencies': dependency 'clt-logger' is not used by any target
Found 1 product dependencies
- swift-log
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.3
Building package at path: $PWD
https://github.com/xcode-actions/clt-logger.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version--6988338F2F200930.txt
[4/9] Compiling Logging MetadataProvider.swift
[5/9] Compiling Logging LogHandler.swift
[6/9] Compiling Logging LogEvent.swift
[7/9] Emitting module Logging
[8/9] Compiling Logging Locks.swift
[9/9] Compiling Logging Logging.swift
[10/19] Compiling CLTLogger OutputEnvironment.swift
[11/19] Compiling CLTLogger DummySendable.swift
[12/19] Compiling CLTLogger CLTLogger.swift
/Users/admin/builder/spi-builder-workspace/Sources/CLTLogger.swift:49:15: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
47 | Might be related to the fact that we cannot use the project as-is,
48 | or that the genericity the Adorkable logger introduces is not really needed (creating a log handler is not that complex). */
49 | public struct CLTLogger : LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
50 |
51 | public enum Style {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[13/19] Emitting module CLTLogger
/Users/admin/builder/spi-builder-workspace/Sources/CLTLogger.swift:49:15: warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
47 | Might be related to the fact that we cannot use the project as-is,
48 | or that the genericity the Adorkable logger introduces is not really needed (creating a log handler is not that complex). */
49 | public struct CLTLogger : LogHandler {
| `- warning: deprecated default implementation is used to satisfy instance method 'log(event:)' required by protocol 'LogHandler': You should implement this method instead of using the default implementation [#DeprecatedDeclaration]
50 |
51 | public enum Style {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/LogHandler.swift:256:17: note: 'log(event:)' declared here
143 | ///
144 | /// - Parameter event: The log event containing the level, message, metadata, and source location.
145 | func log(event: LogEvent)
| `- note: requirement 'log(event:)' declared here
146 |
147 | /// Please do _not_ implement this method when you create a `LogHandler` implementation.
:
254 | /// Implement ``log(event:)`` in your ``LogHandler`` instead.
255 | @available(*, deprecated, message: "You should implement this method instead of using the default implementation")
256 | public func log(event: LogEvent) {
| `- note: 'log(event:)' declared here
257 | self.log(
258 | level: event.level,
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[14/19] Compiling CLTLogger CLTLogger+WithSendable.swift
[15/19] Compiling CLTLogger Emoji.swift
[16/19] Compiling CLTLogger SGR.swift
[17/19] Compiling CLTLogger EmojiSet.swift
[18/19] Compiling CLTLogger Scanner+OldOS.swift
[19/19] Compiling CLTLogger NSLock+withLock.swift
[20/20] Compiling CLTLogger String+Utils.swift
Build complete! (7.77s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.5.1",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log.git"
}
],
"manifest_display_name" : "clt-logger",
"name" : "clt-logger",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "CLTLogger",
"targets" : [
"CLTLogger"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "CLTLoggerTests",
"module_type" : "SwiftTarget",
"name" : "CLTLoggerTests",
"path" : "Tests/CLTLoggerTests",
"sources" : [
"CLTLoggerTests.swift",
"EmojiTests.swift",
"SGRTests.swift",
"StringEscapingTests.swift"
],
"target_dependencies" : [
"CLTLogger"
],
"type" : "test"
},
{
"c99name" : "CLTLogger",
"module_type" : "SwiftTarget",
"name" : "CLTLogger",
"path" : "Sources",
"product_dependencies" : [
"Logging"
],
"product_memberships" : [
"CLTLogger"
],
"sources" : [
"CLTLogger+WithSendable.swift",
"CLTLogger.swift",
"DummySendable.swift",
"Emoji.swift",
"EmojiSet.swift",
"NSLock+withLock.swift",
"OutputEnvironment.swift",
"SGR.swift",
"Scanner+OldOS.swift",
"String+Utils.swift"
],
"type" : "library"
}
],
"tools_version" : "5.8"
}
Done.