Build Information
Successful build of BlackBox, reference main (9fd643), with Swift 6.2 for macOS (SPM) on 24 Nov 2025 16:42:43 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/dodobrands/BlackBox.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/dodobrands/BlackBox
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 9fd6437 Bump actions/checkout from 5 to 6 (#87)
Cloned https://github.com/dodobrands/BlackBox.git
Revision (git rev-parse @):
9fd643748eb4c1f3142ef8ddb369851cda5d3f8a
SUCCESS checkout https://github.com/dodobrands/BlackBox.git at main
Fetching https://github.com/apple/swift-docc-plugin
Fetching https://github.com/dodobrands/DBThreadSafe-ios.git
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/250] Fetching dbthreadsafe-ios
[129/2408] Fetching dbthreadsafe-ios, swift-docc-plugin
Fetched https://github.com/dodobrands/DBThreadSafe-ios.git from cache (0.78s)
[195/2158] Fetching swift-docc-plugin
[217/5739] Fetching swift-docc-plugin, swift-docc-symbolkit
Fetched https://github.com/apple/swift-docc-plugin from cache (1.32s)
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.32s)
Creating working copy for https://github.com/dodobrands/DBThreadSafe-ios.git
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Working copy of https://github.com/dodobrands/DBThreadSafe-ios.git resolved at 2.3.0
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.4.5
========================================
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",
"dependencies": [
{
"identity": "blackbox",
"name": "BlackBox",
"url": "https://github.com/dodobrands/BlackBox.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/BlackBox",
"dependencies": [
{
"identity": "dbthreadsafe-ios",
"name": "DBThreadSafe",
"url": "https://github.com/dodobrands/DBThreadSafe-ios.git",
"version": "2.3.0",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/DBThreadSafe-ios",
"dependencies": [
]
}
]
}
]
}
Fetching https://github.com/dodobrands/BlackBox.git
[1/2389] Fetching blackbox
Fetched https://github.com/dodobrands/BlackBox.git from cache (0.93s)
Fetching https://github.com/dodobrands/DBThreadSafe-ios.git from cache
Fetched https://github.com/dodobrands/DBThreadSafe-ios.git from cache (0.46s)
Computing version for https://github.com/dodobrands/DBThreadSafe-ios.git
Computed https://github.com/dodobrands/DBThreadSafe-ios.git at 2.3.0 (0.97s)
Creating working copy for https://github.com/dodobrands/BlackBox.git
Working copy of https://github.com/dodobrands/BlackBox.git resolved at main (9fd6437)
Creating working copy for https://github.com/dodobrands/DBThreadSafe-ios.git
Working copy of https://github.com/dodobrands/DBThreadSafe-ios.git resolved at 2.3.0
warning: '.resolve-product-dependencies': dependency 'blackbox' is not used by any target
Found 1 product dependencies
- DBThreadSafe
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/dodobrands/BlackBox.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0.app xcrun swift build --arch arm64
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/6] Write sources
[5/6] Write swift-version-49B95AFC49DCD68C.txt
[7/10] Emitting module DBThreadSafe
[8/10] Compiling DBThreadSafe ThreadSafe.swift
[9/10] Compiling DBThreadSafe DBThreadSafeContainer.swift
[10/10] Compiling DBThreadSafe Lock.swift
[11/20] Compiling BlackBox BBHelpers.swift
[12/20] Compiling BlackBox OSSignpostLogger.swift
[13/20] Compiling BlackBox FSLogger.swift
[14/20] Compiling BlackBox OSLogger.swift
[15/20] Compiling BlackBox BlackBox.swift
[16/20] Compiling BlackBox BBLoggerProtocol.swift
[17/20] Compiling BlackBox BBLogLevel.swift
[18/20] Emitting module BlackBox
[19/20] Compiling BlackBox BlackBoxEvents.swift
[20/20] Compiling BlackBox BBLogFormat.swift
/Users/admin/builder/spi-builder-workspace/Sources/BlackBox/BBLogFormat.swift:95:14: warning: 'levelsWithIcons' is deprecated: Use levelsIcons [#DeprecatedDeclaration]
93 | self.userInfoFormatOptions = userInfoFormatOptions
94 | self.sourceSectionInline = sourceSectionInline
95 | self.levelsWithIcons = levelsWithIcons
| `- warning: 'levelsWithIcons' is deprecated: Use levelsIcons [#DeprecatedDeclaration]
96 | self.levelsIcons = levelsIcons
97 | self.measurementFormatter = measurementFormatter
/Users/admin/builder/spi-builder-workspace/Sources/BlackBox/BBLogFormat.swift:104:12: warning: 'levelsWithIcons' is deprecated: Use levelsIcons [#DeprecatedDeclaration]
102 | extension BBLogFormat {
103 | public func icon(for level: BBLogLevel) -> String? {
104 | if levelsWithIcons.contains(level) {
| `- warning: 'levelsWithIcons' is deprecated: Use levelsIcons [#DeprecatedDeclaration]
105 | return level.icon
106 | } else if let icon = levelsIcons.icon(for: level) {
/Users/admin/builder/spi-builder-workspace/Sources/BlackBox/BBLogFormat.swift:105:26: warning: 'icon' is deprecated: Use BBLogFormat.Icons [#DeprecatedDeclaration]
103 | public func icon(for level: BBLogLevel) -> String? {
104 | if levelsWithIcons.contains(level) {
105 | return level.icon
| `- warning: 'icon' is deprecated: Use BBLogFormat.Icons [#DeprecatedDeclaration]
106 | } else if let icon = levelsIcons.icon(for: level) {
107 | return icon
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[21/22] Compiling ExampleModule ExampleService.swift
[22/22] Emitting module ExampleModule
Build complete! (16.25s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-docc-plugin",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-docc-plugin"
},
{
"identity" : "dbthreadsafe-ios",
"requirement" : {
"range" : [
{
"lower_bound" : "2.0.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/dodobrands/DBThreadSafe-ios.git"
}
],
"manifest_display_name" : "BlackBox",
"name" : "BlackBox",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "12.0"
},
{
"name" : "macos",
"version" : "10.14"
},
{
"name" : "tvos",
"version" : "12.0"
},
{
"name" : "watchos",
"version" : "5.0"
}
],
"products" : [
{
"name" : "BlackBox",
"targets" : [
"BlackBox"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"6"
],
"targets" : [
{
"c99name" : "ExampleModule",
"module_type" : "SwiftTarget",
"name" : "ExampleModule",
"path" : "Sources/ExampleModule",
"sources" : [
"ExampleService.swift"
],
"target_dependencies" : [
"BlackBox"
],
"type" : "library"
},
{
"c99name" : "BlackBoxTests",
"module_type" : "SwiftTarget",
"name" : "BlackBoxTests",
"path" : "Tests/BlackBoxTests",
"sources" : [
"BackwardsCompatibilityTests.swift",
"BlackBoxEndEventTests.swift",
"BlackBoxErrorEventTests.swift",
"BlackBoxGenericEventTests.swift",
"BlackBoxStartEventTests.swift",
"BlackBoxTestCase.swift",
"Helpers/AnakinKills.swift",
"Helpers/Lightsaber.swift",
"LoggerMock.swift",
"OSLoggerTests.swift",
"OSSignpostLoggerTests.swift"
],
"target_dependencies" : [
"BlackBox",
"ExampleModule"
],
"type" : "test"
},
{
"c99name" : "BlackBox",
"module_type" : "SwiftTarget",
"name" : "BlackBox",
"path" : "Sources/BlackBox",
"product_dependencies" : [
"DBThreadSafe"
],
"product_memberships" : [
"BlackBox"
],
"sources" : [
"BBLogFormat.swift",
"BBLogLevel.swift",
"BBLoggerProtocol.swift",
"BlackBox.swift",
"BlackBoxEvents.swift",
"Helpers/BBHelpers.swift",
"Loggers/FSLogger.swift",
"Loggers/OSLogger.swift",
"Loggers/OSSignpostLogger.swift"
],
"type" : "library"
}
],
"tools_version" : "6.0"
}
Done.