The Swift Package Index logo.Swift Package Index

Build Information

Successful build of LGNLog, reference main (d40460), with Swift 6.3 for macOS (SPM) on 17 Apr 2026 14:28:26 UTC.

Swift 6 data race errors: 0

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/1711-Games/LGN-Log.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/1711-Games/LGN-Log
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at d404607 Merge pull request #1 from 1711-Games/strict-concurrency
Cloned https://github.com/1711-Games/LGN-Log.git
Revision (git rev-parse @):
d4046070795dee23ae13a8c4affd26a297555f3e
SUCCESS checkout https://github.com/1711-Games/LGN-Log.git at main
Fetching https://github.com/apple/swift-log.git
[1/6630] Fetching swift-log
Fetched https://github.com/apple/swift-log.git from cache (1.37s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.12.0 (2.04s)
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
========================================
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": "lgn-log",
      "name": "LGNLog",
      "url": "https://github.com/1711-Games/LGN-Log.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/LGN-Log",
      "traits": [
        "default"
      ],
      "dependencies": [
        {
          "identity": "swift-log",
          "name": "swift-log",
          "url": "https://github.com/apple/swift-log.git",
          "version": "1.12.0",
          "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swift-log",
          "traits": [
          ],
          "dependencies": [
          ]
        }
      ]
    }
  ]
}
Fetching https://github.com/1711-Games/LGN-Log.git
[1/86] Fetching lgn-log
Fetched https://github.com/1711-Games/LGN-Log.git from cache (0.68s)
Fetching https://github.com/apple/swift-log.git from cache
Fetched https://github.com/apple/swift-log.git from cache (0.56s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.12.0 (0.63s)
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
Creating working copy for https://github.com/1711-Games/LGN-Log.git
Working copy of https://github.com/1711-Games/LGN-Log.git resolved at main (d404607)
warning: '.resolve-product-dependencies': dependency 'lgn-log' 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/1711-Games/LGN-Log.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 MetadataProvider.swift
[5/9] Compiling Logging LogHandler.swift
[6/9] Compiling Logging LogEvent.swift
[7/9] Emitting module Logging
[8/9] Compiling Logging Locks.swift
[9/9] Compiling Logging Logging.swift
[10/11] Compiling LGNLog LGNLog.swift
/Users/admin/builder/spi-builder-workspace/Sources/LGNLog/LGNLog.swift:4:43: warning: conformance of 'Logger' to protocol 'Sendable' was already stated in the type's module 'Logging'
  2 | @_exported import Logging
  3 |
  4 | extension Logger: @unchecked @retroactive Sendable {}
    |                                           `- warning: conformance of 'Logger' to protocol 'Sendable' was already stated in the type's module 'Logging'
  5 |
  6 | public extension Logger {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/Logging.swift:2343:1: note: 'Logger' declares conformance to protocol 'Sendable' here
2341 |
2342 | extension Logger.MetadataValue: Sendable {}
2343 | extension Logger: Sendable {}
     | `- note: 'Logger' declares conformance to protocol 'Sendable' here
2344 | extension Logger.Level: Sendable {}
2345 | extension Logger.Message: Sendable {}
/Users/admin/builder/spi-builder-workspace/Sources/LGNLog/LGNLog.swift:26: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]
 24 | }
 25 |
 26 | public struct LGNLogger: 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]
 27 |     enum E: Error {
 28 |         case DataToJSONConvertionError
/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] Emitting module LGNLog
/Users/admin/builder/spi-builder-workspace/Sources/LGNLog/LGNLog.swift:4:43: warning: conformance of 'Logger' to protocol 'Sendable' was already stated in the type's module 'Logging'
  2 | @_exported import Logging
  3 |
  4 | extension Logger: @unchecked @retroactive Sendable {}
    |                                           `- warning: conformance of 'Logger' to protocol 'Sendable' was already stated in the type's module 'Logging'
  5 |
  6 | public extension Logger {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-log/Sources/Logging/Logging.swift:2343:1: note: 'Logger' declares conformance to protocol 'Sendable' here
2341 |
2342 | extension Logger.MetadataValue: Sendable {}
2343 | extension Logger: Sendable {}
     | `- note: 'Logger' declares conformance to protocol 'Sendable' here
2344 | extension Logger.Level: Sendable {}
2345 | extension Logger.Message: Sendable {}
/Users/admin/builder/spi-builder-workspace/Sources/LGNLog/LGNLog.swift:26: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]
 24 | }
 25 |
 26 | public struct LGNLogger: 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]
 27 |     enum E: Error {
 28 |         case DataToJSONConvertionError
/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! (6.19s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-log",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.4.2",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-log.git"
    }
  ],
  "manifest_display_name" : "LGNLog",
  "name" : "LGNLog",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "12.0"
    }
  ],
  "products" : [
    {
      "name" : "LGNLog",
      "targets" : [
        "LGNLog"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "LGNLogTests",
      "module_type" : "SwiftTarget",
      "name" : "LGNLogTests",
      "path" : "Tests/LGNLogTests",
      "sources" : [
        "LGNLogTests.swift"
      ],
      "target_dependencies" : [
        "LGNLog"
      ],
      "type" : "test"
    },
    {
      "c99name" : "LGNLog",
      "module_type" : "SwiftTarget",
      "name" : "LGNLog",
      "path" : "Sources/LGNLog",
      "product_dependencies" : [
        "Logging"
      ],
      "product_memberships" : [
        "LGNLog"
      ],
      "sources" : [
        "LGNLog.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.