The Swift Package Index logo.Swift Package Index

Build Information

Failed to build Logdog, reference 0.4.0 (370ed7), with Swift 6.3 for macOS (SPM) on 15 Apr 2026 05:52:49 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/uhooi/Logdog.git
Reference: 0.4.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/uhooi/Logdog
 * tag               0.4.0      -> FETCH_HEAD
HEAD is now at 370ed7d Merge pull request #33 from uhooi/feature/support_swift6
Cloned https://github.com/uhooi/Logdog.git
Revision (git rev-parse @):
370ed7d15d12977dbebe35da6186d8cd2a91d605
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/uhooi/Logdog.git at 0.4.0
Fetching https://github.com/apple/swift-docc-plugin
Fetching https://github.com/apple/swift-docc-symbolkit
[1/2275] Fetching swift-docc-plugin
[229/5947] Fetching swift-docc-plugin, swift-docc-symbolkit
Fetched https://github.com/apple/swift-docc-plugin from cache (1.20s)
Fetched https://github.com/apple/swift-docc-symbolkit from cache (1.20s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.3.0 (4.36s)
Computing version for https://github.com/apple/swift-docc-symbolkit
Computed https://github.com/apple/swift-docc-symbolkit at 1.0.0 (0.73s)
Creating working copy for https://github.com/apple/swift-docc-symbolkit
Working copy of https://github.com/apple/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.3.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": "logdog",
      "name": "Logdog",
      "url": "https://github.com/uhooi/Logdog.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Logdog",
      "traits": [
        "default"
      ],
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/uhooi/Logdog.git
[1/353] Fetching logdog
Fetched https://github.com/uhooi/Logdog.git from cache (0.76s)
Creating working copy for https://github.com/uhooi/Logdog.git
Working copy of https://github.com/uhooi/Logdog.git resolved at 0.4.0 (370ed7d)
warning: '.resolve-product-dependencies': dependency 'logdog' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/uhooi/Logdog.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/5] Write sources
[4/5] Write swift-version--6988338F2F200930.txt
[6/11] Compiling Logdog Metadata.swift
[7/11] Compiling Logdog LogLevel.swift
[8/11] Compiling Logdog LogEntry.swift
[9/11] Compiling Logdog LogLevel+Init.swift
[10/11] Emitting module Logdog
[11/11] Compiling Logdog LogStore.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[12/16] Compiling LogdogUI LogdogScreen.swift
/Users/admin/builder/spi-builder-workspace/Sources/LogdogUI/Publics/LogdogScreen.swift:243:64: error: type 'Bundle?' has no member 'module'
241 |     NavigationStack {
242 |         LogdogScreen()
243 |             .navigationTitle(String(localized: "Log", bundle: .module))
    |                                                                `- error: type 'Bundle?' has no member 'module'
244 |             .navigationBarTitleDisplayMode(.inline)
245 |     }
/Users/admin/builder/spi-builder-workspace/Sources/LogdogUI/Publics/LogdogScreen.swift:26:54: error: type 'Bundle?' has no member 'module'
 24 |                         Menu {
 25 |                             Picker(selection: $subsystemSearchScope) {
 26 |                                 Text("All", bundle: .module)
    |                                                      `- error: type 'Bundle?' has no member 'module'
 27 |                                     .tag(SubsystemSearchScope.all)
 28 |
/Users/admin/builder/spi-builder-workspace/Sources/LogdogUI/Publics/LogdogScreen.swift:34:60: error: type 'Bundle?' has no member 'module'
 32 |                                 }
 33 |                             } label: {
 34 |                                 Text("Subsystem", bundle: .module)
    |                                                            `- error: type 'Bundle?' has no member 'module'
 35 |                             }
 36 |                         } label: {
/Users/admin/builder/spi-builder-workspace/Sources/LogdogUI/Publics/LogdogScreen.swift:174:53: error: type 'Bundle?' has no member 'module'
172 |     var text: String {
173 |         switch self {
174 |         case .all: .init(localized: "All", bundle: .module)
    |                                                     `- error: type 'Bundle?' has no member 'module'
175 |         case let .subsystem(subsystem): subsystem
176 |         }
/Users/admin/builder/spi-builder-workspace/Sources/LogdogUI/Publics/LogdogScreen.swift:186:53: error: type 'Bundle?' has no member 'module'
184 |     var text: String {
185 |         switch self {
186 |         case .all: .init(localized: "All", bundle: .module)
    |                                                     `- error: type 'Bundle?' has no member 'module'
187 |         case let .category(category): category
188 |         }
/Users/admin/builder/spi-builder-workspace/Sources/LogdogUI/Publics/LogdogScreen.swift:230:13: error: 'menuActionDismissBehavior' is only available in macOS 13.3 or newer
224 | }
225 |
226 | private extension View {
    |         `- note: add '@available' attribute to enclosing extension
227 |     @ViewBuilder
228 |     func menuActionDismissBehaviorDisabledIfAvailable() -> some View {
    |          `- note: add '@available' attribute to enclosing instance method
229 |         if #available(iOS 16.4, *) {
230 |             menuActionDismissBehavior(.disabled)
    |             |- error: 'menuActionDismissBehavior' is only available in macOS 13.3 or newer
    |             `- note: add 'if #available' version check
231 |         } else {
232 |             self
/Users/admin/builder/spi-builder-workspace/Sources/LogdogUI/Publics/LogdogScreen.swift:230:40: error: 'disabled' is unavailable in macOS
228 |     func menuActionDismissBehaviorDisabledIfAvailable() -> some View {
229 |         if #available(iOS 16.4, *) {
230 |             menuActionDismissBehavior(.disabled)
    |                                        `- error: 'disabled' is unavailable in macOS
231 |         } else {
232 |             self
SwiftUI.MenuActionDismissBehavior.disabled:5:21: note: 'disabled' has been explicitly marked unavailable here
3 |   @available(macOS, unavailable)
4 |   @available(watchOS, unavailable)
5 |   public static let disabled: MenuActionDismissBehavior}
  |                     `- note: 'disabled' has been explicitly marked unavailable here
6 |
[13/16] Compiling LogdogUI LogLevel+UI.swift
/Users/admin/builder/spi-builder-workspace/Sources/LogdogUI/Internals/Extensions/LogLevel+UI.swift:7:65: error: type 'Bundle?' has no member 'module'
 5 |     var text: String {
 6 |         switch self {
 7 |         case .undefined: .init(localized: "Undefined", bundle: .module)
   |                                                                 `- error: type 'Bundle?' has no member 'module'
 8 |         case .debug: .init(localized: "Debug", bundle: .module)
 9 |         case .info: .init(localized: "Info", bundle: .module)
[14/16] Compiling LogdogUI Metadata+UI.swift
/Users/admin/builder/spi-builder-workspace/Sources/LogdogUI/Internals/Extensions/Metadata+UI.swift:6:55: error: type 'Bundle?' has no member 'module'
 4 |     var text: String {
 5 |         switch self {
 6 |         case .type: .init(localized: "Type", bundle: .module)
   |                                                       `- error: type 'Bundle?' has no member 'module'
 7 |         case .timestamp: .init(localized: "Timestamp", bundle: .module)
 8 |         case .library: .init(localized: "Library", bundle: .module)
[15/16] Emitting module LogdogUI
/Users/admin/builder/spi-builder-workspace/Sources/LogdogUI/Publics/LogdogScreen.swift:243:64: error: type 'Bundle?' has no member 'module'
241 |     NavigationStack {
242 |         LogdogScreen()
243 |             .navigationTitle(String(localized: "Log", bundle: .module))
    |                                                                `- error: type 'Bundle?' has no member 'module'
244 |             .navigationBarTitleDisplayMode(.inline)
245 |     }
[16/16] Compiling LogdogUI LogRowView.swift
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/Sources/LogdogUI/Resources/Localizable.xcstrings
BUILD FAILURE 6.3 macosSpm