Build Information
Successful build of LogMacro, reference main (593b21), with Swift 6.2 for macOS (SPM) on 3 Oct 2025 17:10:36 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/Roy-wonji/LogMacro.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/Roy-wonji/LogMacro
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 593b210 ✨[feat]: swift 6 대응 및 진행
Cloned https://github.com/Roy-wonji/LogMacro.git
Revision (git rev-parse @):
593b210346cf7145074c2d94fa4206bbc70198e0
SUCCESS checkout https://github.com/Roy-wonji/LogMacro.git at main
Fetching https://github.com/apple/swift-syntax.git
Fetching https://github.com/apple/swift-docc-plugin.git
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/2094] Fetching swift-docc-plugin
[232/5634] Fetching swift-docc-plugin, swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.14s)
[273/2094] Fetching swift-docc-plugin
[2095/74486] Fetching swift-docc-plugin, swift-syntax
Fetched https://github.com/apple/swift-docc-plugin.git from cache (3.41s)
Fetched https://github.com/apple/swift-syntax.git from cache (3.41s)
Computing version for https://github.com/apple/swift-docc-plugin.git
Computed https://github.com/apple/swift-docc-plugin.git at 1.4.4 (6.25s)
Computing version for https://github.com/apple/swift-syntax.git
Computed https://github.com/apple/swift-syntax.git at 600.0.1 (0.75s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.72s)
Creating working copy for https://github.com/apple/swift-docc-plugin.git
Working copy of https://github.com/apple/swift-docc-plugin.git resolved at 1.4.4
Creating working copy for https://github.com/apple/swift-syntax.git
Working copy of https://github.com/apple/swift-syntax.git resolved at 600.0.1
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Downloading package prebuilt https://download.swift.org/prebuilts/swift-syntax/600.0.1/swiftlang-6.2.0.19.9-MacroSupport-macos_aarch64.zip
Downloaded https://download.swift.org/prebuilts/swift-syntax/600.0.1/swiftlang-6.2.0.19.9-MacroSupport-macos_aarch64.zip (0.27s)
========================================
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": "logmacro",
"name": "LogMacro",
"url": "https://github.com/Roy-wonji/LogMacro.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/LogMacro",
"dependencies": [
{
"identity": "swift-syntax",
"name": "swift-syntax",
"url": "https://github.com/apple/swift-syntax.git",
"version": "600.0.1",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swift-syntax",
"dependencies": [
]
}
]
}
]
}
Fetching https://github.com/Roy-wonji/LogMacro.git
[1/762] Fetching logmacro
Fetched https://github.com/Roy-wonji/LogMacro.git from cache (1.01s)
Fetching https://github.com/apple/swift-syntax.git from cache
Fetched https://github.com/apple/swift-syntax.git from cache (0.90s)
Computing version for https://github.com/apple/swift-syntax.git
Computed https://github.com/apple/swift-syntax.git at 600.0.1 (0.96s)
Creating working copy for https://github.com/apple/swift-syntax.git
Working copy of https://github.com/apple/swift-syntax.git resolved at 600.0.1
Creating working copy for https://github.com/Roy-wonji/LogMacro.git
Working copy of https://github.com/Roy-wonji/LogMacro.git resolved at main (593b210)
warning: '.resolve-product-dependencies': dependency 'logmacro' is not used by any target
Found 1 product dependencies
- swift-syntax
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/Roy-wonji/LogMacro.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/12] Write sources
[4/12] Write LogMacroClient-entitlement.plist
[4/12] Write sources
[6/12] Write swift-version-49B95AFC49DCD68C.txt
[8/15] Compiling LogMacroMacro LogMacroMacro.swift
[9/15] Emitting module LogMacroMacro
[10/15] Compiling LogMacroMacro Plugins.swift
[10/15] Write Objects.LinkFileList
[11/15] Linking LogMacroMacro-tool
[13/21] Compiling LogMacro LogMacroExport.swift
[14/21] Compiling LogMacro Log.swift
/Users/admin/builder/spi-builder-workspace/Sources/LogMacro/Log/Log.swift:128:15: warning: unnecessary check for 'macOS'; enclosing scope ensures guard will always be true
14 | /// iOS/macOS 버전에 따라 적절한 로거(API)를 사용해 메시지를 출력합니다.
15 | @available(iOS 13.0, macOS 10.15, *)
16 | public struct Log: Sendable {
| `- note: enclosing scope here
17 | /// 기본 생성자
18 | public init() {}
:
126 | logger.error("\(fullMessage, privacy: .public)")
127 | }
128 | } else if #available(iOS 12.0, macOS 10.15, *) {
| `- warning: unnecessary check for 'macOS'; enclosing scope ensures guard will always be true
129 | os_log("%{public}@", log: level.osLog, type: level.osLogType, fullMessage)
130 | }
[15/21] Compiling LogMacro Extension+OSLog.swift
[16/21] Compiling LogMacro LogMacro.swift
[17/21] Compiling LogMacro Extension+Log.swift
[18/21] Emitting module LogMacro
[19/23] Compiling LogMacroClient main.swift
[20/23] Emitting module LogMacroClient
[20/23] Write Objects.LinkFileList
[21/23] Linking LogMacroClient
[22/23] Applying LogMacroClient
Build complete! (16.61s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-syntax",
"requirement" : {
"range" : [
{
"lower_bound" : "600.0.0",
"upper_bound" : "601.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-syntax.git"
},
{
"identity" : "swift-docc-plugin",
"requirement" : {
"exact" : [
"1.4.4"
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-docc-plugin.git"
}
],
"manifest_display_name" : "LogMacro",
"name" : "LogMacro",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "ios",
"version" : "13.0"
}
],
"products" : [
{
"name" : "LogMacro",
"targets" : [
"LogMacro"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "LogMacroClient",
"targets" : [
"LogMacroClient"
],
"type" : {
"executable" : null
}
},
{
"name" : "LogMacroMacro",
"targets" : [
"LogMacroMacro"
],
"type" : {
"macro" : null
}
}
],
"swift_languages_versions" : [
"6"
],
"targets" : [
{
"c99name" : "LogMacroTests",
"module_type" : "SwiftTarget",
"name" : "LogMacroTests",
"path" : "Tests/LogMacroTests",
"product_dependencies" : [
"SwiftSyntaxMacrosTestSupport"
],
"sources" : [
"LogMacroTests.swift"
],
"target_dependencies" : [
"LogMacroMacro"
],
"type" : "test"
},
{
"c99name" : "LogMacroMacro",
"module_type" : "SwiftTarget",
"name" : "LogMacroMacro",
"path" : "Sources/LogMacroMacro",
"product_dependencies" : [
"SwiftSyntaxMacros",
"SwiftCompilerPlugin"
],
"product_memberships" : [
"LogMacro",
"LogMacroClient",
"LogMacroMacro"
],
"sources" : [
"LogMacroMacro.swift",
"Plugins.swift"
],
"type" : "macro"
},
{
"c99name" : "LogMacroClient",
"module_type" : "SwiftTarget",
"name" : "LogMacroClient",
"path" : "Sources/LogMacroClient",
"product_memberships" : [
"LogMacroClient"
],
"sources" : [
"main.swift"
],
"target_dependencies" : [
"LogMacro"
],
"type" : "executable"
},
{
"c99name" : "LogMacro",
"module_type" : "SwiftTarget",
"name" : "LogMacro",
"path" : "Sources/LogMacro",
"product_memberships" : [
"LogMacro",
"LogMacroClient"
],
"sources" : [
"Log/Extension+Log.swift",
"Log/Extension+OSLog.swift",
"Log/Log.swift",
"Log/LogMacroExport.swift",
"Macro/LogMacro.swift"
],
"target_dependencies" : [
"LogMacroMacro"
],
"type" : "library"
}
],
"tools_version" : "6.1"
}
Done.