Build Information
Successful build of swift-log-syslog, reference master (cc19c4), with Swift 6.3 for macOS (SPM) on 10 Apr 2026 18:22:50 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/ianpartridge/swift-log-syslog.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/ianpartridge/swift-log-syslog
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at cc19c41 Merge pull request #3 from ianpartridge/travis
Cloned https://github.com/ianpartridge/swift-log-syslog.git
Revision (git rev-parse @):
cc19c41bcb53f4ccf64405e6f4a2951a467f973d
SUCCESS checkout https://github.com/ianpartridge/swift-log-syslog.git at master
Fetching https://github.com/apple/swift-log.git
[1/6521] Fetching swift-log
Fetched https://github.com/apple/swift-log.git from cache (1.23s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.11.0 (1.83s)
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.11.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": "swift-log-syslog",
"name": "swift-log-syslog",
"url": "https://github.com/ianpartridge/swift-log-syslog.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swift-log-syslog",
"traits": [
"default"
],
"dependencies": [
{
"identity": "swift-log",
"name": "swift-log",
"url": "https://github.com/apple/swift-log.git",
"version": "1.11.0",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swift-log",
"traits": [
],
"dependencies": [
]
}
]
}
]
}
Fetching https://github.com/ianpartridge/swift-log-syslog.git
[1/45] Fetching swift-log-syslog
Fetched https://github.com/ianpartridge/swift-log-syslog.git from cache (0.66s)
Fetching https://github.com/apple/swift-log.git from cache
Fetched https://github.com/apple/swift-log.git from cache (0.49s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.11.0 (0.56s)
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.11.0
Creating working copy for https://github.com/ianpartridge/swift-log-syslog.git
Working copy of https://github.com/ianpartridge/swift-log-syslog.git resolved at master (cc19c41)
warning: '.resolve-product-dependencies': dependency 'swift-log-syslog' 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/ianpartridge/swift-log-syslog.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 LogHandler.swift
[5/9] Compiling Logging MetadataProvider.swift
[6/9] Compiling Logging LogEvent.swift
[7/9] Compiling Logging Logging.swift
[8/9] Emitting module Logging
[9/9] Compiling Logging Locks.swift
[10/11] Emitting module LoggingSyslog
/Users/admin/builder/spi-builder-workspace/Sources/LoggingSyslog/SyslogLogHandler.swift:5: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]
3 |
4 | /// A `LogHandler` which logs to `syslog(3)`.
5 | public struct SyslogLogHandler: 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]
6 |
7 | /// Create a `SyslogLogHandler`.
/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>
[11/11] Compiling LoggingSyslog SyslogLogHandler.swift
/Users/admin/builder/spi-builder-workspace/Sources/LoggingSyslog/SyslogLogHandler.swift:5: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]
3 |
4 | /// A `LogHandler` which logs to `syslog(3)`.
5 | public struct SyslogLogHandler: 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]
6 |
7 | /// Create a `SyslogLogHandler`.
/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>
Build complete! (3.18s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log.git"
}
],
"manifest_display_name" : "swift-log-syslog",
"name" : "swift-log-syslog",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "LoggingSyslog",
"targets" : [
"LoggingSyslog"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "LoggingSyslogTests",
"module_type" : "SwiftTarget",
"name" : "LoggingSyslogTests",
"path" : "Tests/LoggingSyslogTests",
"product_dependencies" : [
"Logging"
],
"sources" : [
"SyslogLogHandlerTests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"LoggingSyslog"
],
"type" : "test"
},
{
"c99name" : "LoggingSyslog",
"module_type" : "SwiftTarget",
"name" : "LoggingSyslog",
"path" : "Sources/LoggingSyslog",
"product_dependencies" : [
"Logging"
],
"product_memberships" : [
"LoggingSyslog"
],
"sources" : [
"SyslogLogHandler.swift"
],
"target_dependencies" : [
"CSyslog"
],
"type" : "library"
},
{
"c99name" : "CSyslog",
"module_type" : "SystemLibraryTarget",
"name" : "CSyslog",
"path" : "Sources/CSyslog",
"product_memberships" : [
"LoggingSyslog"
],
"sources" : [
],
"type" : "system-target"
}
],
"tools_version" : "5.0"
}
Done.