Build Information
Successful build of swift-log-SwiftyBeaver, reference master (675c2d), with Swift 6.3 for Linux on 15 Apr 2026 02:06:23 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest swift build --triple x86_64-unknown-linux-gnu 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/ShivaHuang/swift-log-SwiftyBeaver.git
Reference: master
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
From https://github.com/ShivaHuang/swift-log-SwiftyBeaver
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at 675c2d4 Misc: Upgrade Dependencies
Cloned https://github.com/ShivaHuang/swift-log-SwiftyBeaver.git
Revision (git rev-parse @):
675c2d46fe0d68771af00d4657bceb83b5727c6a
SUCCESS checkout https://github.com/ShivaHuang/swift-log-SwiftyBeaver.git at master
========================================
Build
========================================
Selected platform: linux
Swift version: 6.3
Building package at path: $PWD
https://github.com/ShivaHuang/swift-log-SwiftyBeaver.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:5a7d791d2ead8a924b1292cb31bf3288eabcfe8880e0b005b00b45b71a5bc36a
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest
Fetching https://github.com/apple/swift-log.git
Fetching https://github.com/SwiftyBeaver/SwiftyBeaver.git
[1/4079] Fetching swiftybeaver
[3265/10648] Fetching swiftybeaver, swift-log
Fetched https://github.com/SwiftyBeaver/SwiftyBeaver.git from cache (0.78s)
Fetched https://github.com/apple/swift-log.git from cache (0.79s)
Computing version for https://github.com/SwiftyBeaver/SwiftyBeaver.git
Computed https://github.com/SwiftyBeaver/SwiftyBeaver.git at 2.1.1 (1.56s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.12.0 (0.55s)
Creating working copy for https://github.com/SwiftyBeaver/SwiftyBeaver.git
Working copy of https://github.com/SwiftyBeaver/SwiftyBeaver.git resolved at 2.1.1
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
Building for debugging...
[0/4] Write sources
[3/4] Write swift-version-24593BA9C3E375BF.txt
[5/19] Emitting module Logging
[6/19] Compiling Logging LogEvent.swift
[7/19] Compiling Logging MetadataProvider.swift
[8/19] Compiling Logging Locks.swift
[9/19] Compiling SwiftyBeaver Filter.swift
[10/20] Compiling SwiftyBeaver FileDestination.swift
[11/20] Compiling SwiftyBeaver ConsoleDestination.swift
[12/20] Compiling SwiftyBeaver Extensions.swift
[13/20] Emitting module SwiftyBeaver
[14/20] Compiling SwiftyBeaver Base64.swift
[15/20] Compiling SwiftyBeaver BaseDestination.swift
[16/20] Compiling SwiftyBeaver FilterValidator.swift
[17/20] Compiling SwiftyBeaver GoogleCloudDestination.swift
[18/20] Compiling SwiftyBeaver SwiftyBeaver.swift
[20/21] Compiling Logging LogHandler.swift
[21/21] Compiling Logging Logging.swift
[23/24] Emitting module LoggingSwiftyBeaver
/host/spi-builder-workspace/Sources/LoggingSwiftyBeaver/LoggingSwiftyBeaver.swift:13:19: 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]
11 |
12 | extension SwiftyBeaver {
13 | public struct LogHandler: Logging.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]
14 | public let label: String
15 | public var metadata: Logger.Metadata
/host/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>
[24/24] Compiling LoggingSwiftyBeaver LoggingSwiftyBeaver.swift
/host/spi-builder-workspace/Sources/LoggingSwiftyBeaver/LoggingSwiftyBeaver.swift:13:19: 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]
11 |
12 | extension SwiftyBeaver {
13 | public struct LogHandler: Logging.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]
14 | public let label: String
15 | public var metadata: Logger.Metadata
/host/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>
Build complete! (16.12s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.6.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log.git"
},
{
"identity" : "swiftybeaver",
"requirement" : {
"range" : [
{
"lower_bound" : "2.0.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/SwiftyBeaver/SwiftyBeaver.git"
}
],
"manifest_display_name" : "swift-log-SwiftyBeaver",
"name" : "swift-log-SwiftyBeaver",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "LoggingSwiftyBeaver",
"targets" : [
"LoggingSwiftyBeaver"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "LoggingSwiftyBeaverTests",
"module_type" : "SwiftTarget",
"name" : "LoggingSwiftyBeaverTests",
"path" : "Tests/LoggingSwiftyBeaverTests",
"sources" : [
"LoggingSwiftyBeaverTests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"LoggingSwiftyBeaver"
],
"type" : "test"
},
{
"c99name" : "LoggingSwiftyBeaver",
"module_type" : "SwiftTarget",
"name" : "LoggingSwiftyBeaver",
"path" : "Sources/LoggingSwiftyBeaver",
"product_dependencies" : [
"Logging",
"SwiftyBeaver"
],
"product_memberships" : [
"LoggingSwiftyBeaver"
],
"sources" : [
"LoggingSwiftyBeaver.swift"
],
"type" : "library"
}
],
"tools_version" : "5.2"
}
basic-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:5a7d791d2ead8a924b1292cb31bf3288eabcfe8880e0b005b00b45b71a5bc36a
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest
Done.