The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build Glider, reference main (c93275), with Swift 6.1 for watchOS using Xcode 16.3 on 28 Apr 2025 07:53:08 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Glider -destination generic/platform=watchOS

Build Log

SwiftEmitModule normal armv7k Emitting\ module\ for\ Glider (in target 'Glider' from project 'Glider')
EmitSwiftModule normal armv7k (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/FieldsFormatter/FieldsFormatter+Field.swift:474:28: warning: static property 'dateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    fileprivate static var dateFormatter: DateFormatter = {
                           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/FieldsFormatter/FieldsFormatter+Field.swift:474:28: note: convert 'dateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
    fileprivate static var dateFormatter: DateFormatter = {
                       ~~~ ^
                       let
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/FieldsFormatter/FieldsFormatter+Field.swift:474:28: note: add '@MainActor' to make static property 'dateFormatter' part of global actor 'MainActor'
    fileprivate static var dateFormatter: DateFormatter = {
                           ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/FieldsFormatter/FieldsFormatter+Field.swift:474:28: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    fileprivate static var dateFormatter: DateFormatter = {
                           ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/FieldsFormatter/FieldsFormatter+Field.swift:481:28: warning: static property 'xcodeDateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    fileprivate static var xcodeDateFormatter: DateFormatter = {
                           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/FieldsFormatter/FieldsFormatter+Field.swift:481:28: note: convert 'xcodeDateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
    fileprivate static var xcodeDateFormatter: DateFormatter = {
                       ~~~ ^
                       let
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/FieldsFormatter/FieldsFormatter+Field.swift:481:28: note: add '@MainActor' to make static property 'xcodeDateFormatter' part of global actor 'MainActor'
    fileprivate static var xcodeDateFormatter: DateFormatter = {
                           ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/FieldsFormatter/FieldsFormatter+Field.swift:481:28: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    fileprivate static var xcodeDateFormatter: DateFormatter = {
                           ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/FieldsFormatter/FieldsFormatter+Field.swift:488:28: warning: static property 'iso8601Formatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    fileprivate static var iso8601Formatter: ISO8601DateFormatter = {
                           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/FieldsFormatter/FieldsFormatter+Field.swift:488:28: note: convert 'iso8601Formatter' to a 'let' constant to make 'Sendable' shared state immutable
    fileprivate static var iso8601Formatter: ISO8601DateFormatter = {
                       ~~~ ^
                       let
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/FieldsFormatter/FieldsFormatter+Field.swift:488:28: note: add '@MainActor' to make static property 'iso8601Formatter' part of global actor 'MainActor'
    fileprivate static var iso8601Formatter: ISO8601DateFormatter = {
                           ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/FieldsFormatter/FieldsFormatter+Field.swift:488:28: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    fileprivate static var iso8601Formatter: ISO8601DateFormatter = {
                           ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/FieldsFormatter/FieldsFormatter+Field.swift:608:27: warning: static property 'tableInfoMaxColumnsWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        public static var tableInfoMaxColumnsWidth: (keyColumn: Int?, valueColumn: Int?) = (30, 100)
                          ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/FieldsFormatter/FieldsFormatter+Field.swift:608:27: note: convert 'tableInfoMaxColumnsWidth' to a 'let' constant to make 'Sendable' shared state immutable
        public static var tableInfoMaxColumnsWidth: (keyColumn: Int?, valueColumn: Int?) = (30, 100)
                      ~~~ ^
                      let
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/FieldsFormatter/FieldsFormatter+Field.swift:608:27: note: add '@MainActor' to make static property 'tableInfoMaxColumnsWidth' part of global actor 'MainActor'
        public static var tableInfoMaxColumnsWidth: (keyColumn: Int?, valueColumn: Int?) = (30, 100)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/FieldsFormatter/FieldsFormatter+Field.swift:608:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static var tableInfoMaxColumnsWidth: (keyColumn: Int?, valueColumn: Int?) = (30, 100)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/TableFormatter/ASCII Table/ASCIITable.swift:144:27: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'ASCIITable.Column.Corners' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let `default`: Corners = .init()
                          ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/TableFormatter/ASCII Table/ASCIITable.swift:138:19: note: consider making struct 'Corners' conform to the 'Sendable' protocol
    public struct Corners {
                  ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/TableFormatter/ASCII Table/ASCIITable.swift:144:27: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
        public static let `default`: Corners = .init()
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/TableFormatter/ASCII Table/ASCIITable.swift:144:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let `default`: Corners = .init()
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/TableFormatter/ASCII Table/ASCIITable.swift:221:27: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'ASCIITable.Column.VerticalPadding' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let zero = VerticalPadding()
                          ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/TableFormatter/ASCII Table/ASCIITable.swift:217:19: note: consider making struct 'VerticalPadding' conform to the 'Sendable' protocol
    public struct VerticalPadding: Equatable {
                  ^
                                            , Sendable
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/TableFormatter/ASCII Table/ASCIITable.swift:221:27: note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
        public static let zero = VerticalPadding()
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/TableFormatter/ASCII Table/ASCIITable.swift:221:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let zero = VerticalPadding()
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/XCodeFormatter/XCodeFormatter+Colorize.swift:36:27: warning: static property 'callSite' is not concurrency-safe because non-'Sendable' type 'XCodeFormatter.ColorizeFields' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let callSite = ColorizeFields(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/XCodeFormatter/XCodeFormatter+Colorize.swift:33:19: note: consider making struct 'ColorizeFields' conform to the 'Sendable' protocol
    public struct ColorizeFields: OptionSet {
                  ^
                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/XCodeFormatter/XCodeFormatter+Colorize.swift:36:27: note: add '@MainActor' to make static property 'callSite' part of global actor 'MainActor'
        public static let callSite = ColorizeFields(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/XCodeFormatter/XCodeFormatter+Colorize.swift:36:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let callSite = ColorizeFields(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/XCodeFormatter/XCodeFormatter+Colorize.swift:37:27: warning: static property 'message' is not concurrency-safe because non-'Sendable' type 'XCodeFormatter.ColorizeFields' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let message = ColorizeFields(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/XCodeFormatter/XCodeFormatter+Colorize.swift:33:19: note: consider making struct 'ColorizeFields' conform to the 'Sendable' protocol
    public struct ColorizeFields: OptionSet {
                  ^
                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/XCodeFormatter/XCodeFormatter+Colorize.swift:37:27: note: add '@MainActor' to make static property 'message' part of global actor 'MainActor'
        public static let message = ColorizeFields(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/XCodeFormatter/XCodeFormatter+Colorize.swift:37:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let message = ColorizeFields(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/XCodeFormatter/XCodeFormatter+Colorize.swift:38:27: warning: static property 'level' is not concurrency-safe because non-'Sendable' type 'XCodeFormatter.ColorizeFields' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let level = ColorizeFields(rawValue: 2 << 2)
                          ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/XCodeFormatter/XCodeFormatter+Colorize.swift:33:19: note: consider making struct 'ColorizeFields' conform to the 'Sendable' protocol
    public struct ColorizeFields: OptionSet {
                  ^
                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/XCodeFormatter/XCodeFormatter+Colorize.swift:38:27: note: add '@MainActor' to make static property 'level' part of global actor 'MainActor'
        public static let level = ColorizeFields(rawValue: 2 << 2)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/XCodeFormatter/XCodeFormatter+Colorize.swift:38:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let level = ColorizeFields(rawValue: 2 << 2)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Glider/Sources/GliderSDK.swift:23:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'GliderSDK' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let shared = GliderSDK()
                      ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/GliderSDK.swift:18:14: note: class 'GliderSDK' does not conform to the 'Sendable' protocol
public class GliderSDK {
             ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/GliderSDK.swift:23:23: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    public static let shared = GliderSDK()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Glider/Sources/GliderSDK.swift:23:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let shared = GliderSDK()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Glider/Sources/GliderSDK.swift:86:16: warning: stored property 'info' of 'Sendable'-conforming struct 'GliderError' has non-sendable type '[String : Any]'; this is an error in the Swift 6 language mode
    public var info: [String: Any]
               ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional Structures/Foundation+Extensions/UIDevice+Extension.swift:151:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
extension CGSize: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional Structures/Foundation+Extensions/UIDevice+Extension.swift:151:1: note: add '@retroactive' to silence this warning
extension CGSize: CustomStringConvertible {
^                 ~~~~~~~~~~~~~~~~~~~~~~~
                  @retroactive CustomStringConvertible
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Styles.swift:40:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LogIntegerFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let `default`: LogIntegerFormatting = .decimal(minDigits: nil, maxDigits: nil)
                      ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Styles.swift:35:13: note: consider making enum 'LogIntegerFormatting' conform to the 'Sendable' protocol
public enum LogIntegerFormatting {
            ^
                                 : Sendable
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Styles.swift:40:23: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    public static let `default`: LogIntegerFormatting = .decimal(minDigits: nil, maxDigits: nil)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Styles.swift:40:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let `default`: LogIntegerFormatting = .decimal(minDigits: nil, maxDigits: nil)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Styles.swift:59:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LogDoubleFormatting' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let `default`: LogDoubleFormatting = .fixed(precision: 2)
                      ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Styles.swift:51:13: note: consider making enum 'LogDoubleFormatting' conform to the 'Sendable' protocol
public enum LogDoubleFormatting {
            ^
                                : Sendable
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Styles.swift:59:23: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    public static let `default`: LogDoubleFormatting = .fixed(precision: 2)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional Structures/LogInterpolation/LogInterpolation+Styles.swift:59:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let `default`: LogDoubleFormatting = .fixed(precision: 2)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional Structures/ProcessIdentification.swift:23:23: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var shared = ProcessIdentification()
                      ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional Structures/ProcessIdentification.swift:23:23: note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
    public static var shared = ProcessIdentification()
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional Structures/ProcessIdentification.swift:23:23: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    public static var shared = ProcessIdentification()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional Structures/ProcessIdentification.swift:23:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var shared = ProcessIdentification()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:59:20: warning: static property 'current' is not concurrency-safe because non-'Sendable' type 'StatusMonitor.Network' may have shared mutable state; this is an error in the Swift 6 language mode
        static let current = Network()
                   ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:55:20: note: class 'Network' does not conform to the 'Sendable' protocol
    internal class Network {
                   ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:59:20: note: add '@MainActor' to make static property 'current' part of global actor 'MainActor'
        static let current = Network()
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:59:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let current = Network()
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:125:20: warning: static property 'current' is not concurrency-safe because non-'Sendable' type 'StatusMonitor.Memory' may have shared mutable state; this is an error in the Swift 6 language mode
        static let current = Memory()
                   ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:111:11: note: class 'Memory' does not conform to the 'Sendable' protocol
    class Memory {
          ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:125:20: note: add '@MainActor' to make static property 'current' part of global actor 'MainActor'
        static let current = Memory()
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional Structures/StatusMonitor.swift:125:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let current = Memory()
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Context.swift:85:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'ContextsData' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let shared = ContextsData()
                      ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Context.swift:80:16: note: class 'ContextsData' does not conform to the 'Sendable' protocol
internal class ContextsData {
               ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Context.swift:85:23: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    public static let shared = ContextsData()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Context.swift:85:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let shared = ContextsData()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Context.swift:222:23: warning: static property 'device' is not concurrency-safe because non-'Sendable' type 'ContextsCaptureOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let device = ContextsCaptureOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Context.swift:218:15: note: consider making struct 'ContextsCaptureOptions' conform to the 'Sendable' protocol
public struct ContextsCaptureOptions: OptionSet {
              ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Context.swift:222:23: note: add '@MainActor' to make static property 'device' part of global actor 'MainActor'
    public static let device = ContextsCaptureOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Context.swift:222:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let device = ContextsCaptureOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Context.swift:225:23: warning: static property 'os' is not concurrency-safe because non-'Sendable' type 'ContextsCaptureOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let os = ContextsCaptureOptions(rawValue: 2 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Context.swift:218:15: note: consider making struct 'ContextsCaptureOptions' conform to the 'Sendable' protocol
public struct ContextsCaptureOptions: OptionSet {
              ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Context.swift:225:23: note: add '@MainActor' to make static property 'os' part of global actor 'MainActor'
    public static let os = ContextsCaptureOptions(rawValue: 2 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Context.swift:225:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let os = ContextsCaptureOptions(rawValue: 2 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Context.swift:228:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ContextsCaptureOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let all: ContextsCaptureOptions = [.device, .os]
                      ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Context.swift:218:15: note: consider making struct 'ContextsCaptureOptions' conform to the 'Sendable' protocol
public struct ContextsCaptureOptions: OptionSet {
              ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Context.swift:228:23: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
    public static let all: ContextsCaptureOptions = [.device, .os]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Context.swift:228:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let all: ContextsCaptureOptions = [.device, .os]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Context.swift:231:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ContextsCaptureOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let none: ContextsCaptureOptions = []
                      ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Context.swift:218:15: note: consider making struct 'ContextsCaptureOptions' conform to the 'Sendable' protocol
public struct ContextsCaptureOptions: OptionSet {
              ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Context.swift:231:23: note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    public static let none: ContextsCaptureOptions = []
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Context.swift:231:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let none: ContextsCaptureOptions = []
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/Support/AsyncOperation.swift:19:14: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
public class AsyncOperation: Operation {
             ^
                                      , @unchecked Sendable
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/Support/AsyncURLRequestsOperation.swift:18:20: warning: class 'AsyncURLRequestOperation' must restate inherited '@unchecked Sendable' conformance
public final class AsyncURLRequestOperation: AsyncOperation {
                   ^
                                                           , @unchecked Sendable
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/LogstashTransport/LogstashTransport.swift:287:19: warning: non-final class 'LogstashURLSessionDelegate' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
    private class LogstashURLSessionDelegate: NSObject, URLSessionDelegate, URLSessionTaskDelegate, URLSessionStreamDelegate {
                  ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/LogstashTransport/LogstashTransport.swift:292:30: warning: stored property 'transport' of 'Sendable'-conforming class 'LogstashURLSessionDelegate' is mutable; this is an error in the Swift 6 language mode
        fileprivate weak var transport: LogstashTransport?
                             ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:55:38: warning: converting non-sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
                queue.async(execute: startBrowser)
                                     ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:58:38: warning: converting non-sendable function value to '@Sendable @convention(block) () -> Void' may introduce data races
                queue.async(execute: cancel)
                                     ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:73:42: error: 'NWBrowser' is only available in watchOS 6.0 or newer
    public private(set) var servers: Set<NWBrowser.Result> = []
                                         ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:39:14: note: add @available attribute to enclosing class
public class RemoteTransport: Transport {
             ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:94:26: error: 'NWBrowser' is only available in watchOS 6.0 or newer
    private var browser: NWBrowser?
                         ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:39:14: note: add @available attribute to enclosing class
public class RemoteTransport: Transport {
             ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:102:34: error: 'NWBrowser' is only available in watchOS 6.0 or newer
    private var connectedServer: NWBrowser.Result?
                                 ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:39:14: note: add @available attribute to enclosing class
public class RemoteTransport: Transport {
             ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:221:38: error: 'NWBrowser' is only available in watchOS 6.0 or newer
    private func suitableServer() -> NWBrowser.Result? {
                                     ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:221:18: note: add @available attribute to enclosing instance method
    private func suitableServer() -> NWBrowser.Result? {
                 ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:39:14: note: add @available attribute to enclosing class
public class RemoteTransport: Transport {
             ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:242:36: error: 'NWBrowser' is only available in watchOS 6.0 or newer
    public func connect(to server: NWBrowser.Result) {
                                   ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:242:17: note: add @available attribute to enclosing instance method
    public func connect(to server: NWBrowser.Result) {
                ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:39:14: note: add @available attribute to enclosing class
public class RemoteTransport: Transport {
             ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:268:44: error: 'NWBrowser' is only available in watchOS 6.0 or newer
    private func openConnection(to server: NWBrowser.Result) {
                                           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:268:18: note: add @available attribute to enclosing instance method
    private func openConnection(to server: NWBrowser.Result) {
                 ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:39:14: note: add @available attribute to enclosing class
public class RemoteTransport: Transport {
             ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/Network+Extension.swift:23:11: error: 'NWBrowser' is only available in watchOS 6.0 or newer
extension NWBrowser.Result {
          ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/Network+Extension.swift:23:1: note: add @available attribute to enclosing extension
extension NWBrowser.Result {
^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:139:31: warning: static property 'current' is not concurrency-safe because non-'Sendable' type 'RemoteTransport.PacketHello.AppInfo' may have shared mutable state; this is an error in the Swift 6 language mode
            public static let current = AppInfo()
                              ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:138:23: note: consider making struct 'AppInfo' conform to the 'Sendable' protocol
        public struct AppInfo: Codable {
                      ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:139:31: note: add '@MainActor' to make static property 'current' part of global actor 'MainActor'
            public static let current = AppInfo()
                              ^
            @MainActor
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift:139:31: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
            public static let current = AppInfo()
                              ^
            nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:116:27: warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'SQLiteDb.OpenMode' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let readOnly = OpenMode(rawValue: SQLITE_OPEN_READONLY)
                          ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:110:19: note: consider making struct 'OpenMode' conform to the 'Sendable' protocol
    public struct OpenMode: OptionSet {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:116:27: note: add '@MainActor' to make static property 'readOnly' part of global actor 'MainActor'
        public static let readOnly = OpenMode(rawValue: SQLITE_OPEN_READONLY)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:116:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let readOnly = OpenMode(rawValue: SQLITE_OPEN_READONLY)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:121:27: warning: static property 'readWrite' is not concurrency-safe because non-'Sendable' type 'SQLiteDb.OpenMode' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let readWrite = OpenMode(rawValue: SQLITE_OPEN_READWRITE)
                          ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:110:19: note: consider making struct 'OpenMode' conform to the 'Sendable' protocol
    public struct OpenMode: OptionSet {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:121:27: note: add '@MainActor' to make static property 'readWrite' part of global actor 'MainActor'
        public static let readWrite = OpenMode(rawValue: SQLITE_OPEN_READWRITE)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:121:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let readWrite = OpenMode(rawValue: SQLITE_OPEN_READWRITE)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:125:27: warning: static property 'create' is not concurrency-safe because non-'Sendable' type 'SQLiteDb.OpenMode' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let create = OpenMode(rawValue: SQLITE_OPEN_CREATE | SQLITE_OPEN_READWRITE)
                          ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:110:19: note: consider making struct 'OpenMode' conform to the 'Sendable' protocol
    public struct OpenMode: OptionSet {
                  ^
                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:125:27: note: add '@MainActor' to make static property 'create' part of global actor 'MainActor'
        public static let create = OpenMode(rawValue: SQLITE_OPEN_CREATE | SQLITE_OPEN_READWRITE)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift:125:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let create = OpenMode(rawValue: SQLITE_OPEN_CREATE | SQLITE_OPEN_READWRITE)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb.swift:43:23: warning: static property 'logger' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var logger: Log?
                      ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb.swift:43:23: note: convert 'logger' to a 'let' constant to make 'Sendable' shared state immutable
    public static var logger: Log?
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb.swift:43:23: note: add '@MainActor' to make static property 'logger' part of global actor 'MainActor'
    public static var logger: Log?
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb.swift:43:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var logger: Log?
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:41:29: error: 'NetService' is unavailable in watchOS
    private var netService: NetService
                            ^~~~~~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h:88:12: note: 'NetService' has been explicitly marked unavailable here
@interface NSNetService : NSObject {
           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:93:32: error: 'NetService' is unavailable in watchOS
    public func start(options: NetService.Options = [.listenForConnections],
                               ^~~~~~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h:88:12: note: 'NetService' has been explicitly marked unavailable here
@interface NSNetService : NSObject {
           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:127:41: error: 'NetService' is unavailable in watchOS
    func netServiceDidPublish(_ sender: NetService) {
                                        ^~~~~~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h:88:12: note: 'NetService' has been explicitly marked unavailable here
@interface NSNetService : NSObject {
           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:132:31: error: 'NetService' is unavailable in watchOS
    func netService(_ sender: NetService, didNotPublish errorDict: [String: NSNumber]) {
                              ^~~~~~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h:88:12: note: 'NetService' has been explicitly marked unavailable here
@interface NSNetService : NSObject {
           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:138:38: error: 'NetService' is unavailable in watchOS
    func netServiceDidStop(_ sender: NetService) {
                                     ^~~~~~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h:88:12: note: 'NetService' has been explicitly marked unavailable here
@interface NSNetService : NSObject {
           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:118:57: error: 'NetServiceDelegate' is unavailable in watchOS
private class BonjourPublisherObjectDelegate: NSObject, NetServiceDelegate {
                                                        ^~~~~~~~~~~~~~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h:244:11: note: 'NetServiceDelegate' has been explicitly marked unavailable here
@protocol NSNetServiceDelegate <NSObject>
          ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/NetService+Extensions.swift:18:20: error: 'NetService' is unavailable in watchOS
internal extension NetService {
                   ^~~~~~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h:88:12: note: 'NetService' has been explicitly marked unavailable here
@interface NSNetService : NSObject {
           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:29:39: error: 'NWProtocolWebSocket' is only available in watchOS 6.0 or newer
    public static var defaultOptions: NWProtocolWebSocket.Options {
                                      ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:29:23: note: add @available attribute to enclosing static property
    public static var defaultOptions: NWProtocolWebSocket.Options {
                      ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:23:12: note: add @available attribute to enclosing class
open class WebSocketClient {
           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:64:26: error: 'NWProtocolWebSocket' is only available in watchOS 6.0 or newer
                options: NWProtocolWebSocket.Options = WebSocketClient.defaultOptions,
                         ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:62:12: note: add @available attribute to enclosing initializer
    public init(url: URL,
           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:23:12: note: add @available attribute to enclosing class
open class WebSocketClient {
           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:90:38: error: 'NWProtocolWebSocket' is only available in watchOS 6.0 or newer
                            options: NWProtocolWebSocket.Options = WebSocketClient.defaultOptions,
                                     ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:88:24: note: add @available attribute to enclosing initializer
    public convenience init(request: URLRequest,
                       ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:23:12: note: add @available attribute to enclosing class
open class WebSocketClient {
           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:195:37: error: 'NWProtocolWebSocket' is only available in watchOS 6.0 or newer
    open func disconnect(closeCode: NWProtocolWebSocket.CloseCode = .protocolCode(.normalClosure)) {
                                    ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:195:15: note: add @available attribute to enclosing instance method
    open func disconnect(closeCode: NWProtocolWebSocket.CloseCode = .protocolCode(.normalClosure)) {
              ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:23:12: note: add @available attribute to enclosing class
open class WebSocketClient {
           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:367:60: error: 'NWProtocolWebSocket' is only available in watchOS 6.0 or newer
    private func scheduleDisconnectionReporting(closeCode: NWProtocolWebSocket.CloseCode,
                                                           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:367:18: note: add @available attribute to enclosing instance method
    private func scheduleDisconnectionReporting(closeCode: NWProtocolWebSocket.CloseCode,
                 ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:23:12: note: add @available attribute to enclosing class
open class WebSocketClient {
           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:448:13: warning: var '_intentionalDisconnection' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var _intentionalDisconnection: Bool = false
            ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:448:13: note: convert '_intentionalDisconnection' to a 'let' constant to make 'Sendable' shared state immutable
private var _intentionalDisconnection: Bool = false
        ~~~ ^
        let
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:448:13: note: add '@MainActor' to make var '_intentionalDisconnection' part of global actor 'MainActor'
private var _intentionalDisconnection: Bool = false
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:448:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var _intentionalDisconnection: Bool = false
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClientDelegate.swift:34:44: error: 'NWProtocolWebSocket' is only available in watchOS 6.0 or newer
                                closeCode: NWProtocolWebSocket.CloseCode,
                                           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClientDelegate.swift:33:10: note: add @available attribute to enclosing instance method
    func webSocketDidDisconnect(connection: WebSocketClient,
         ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClientDelegate.swift:22:17: note: add @available attribute to enclosing protocol
public protocol WebSocketClientDelegate: AnyObject {
                ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketServer/WebSocketPeer.swift:45:24: warning: static property 'nextID' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var nextID: Int = 0
                       ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketServer/WebSocketPeer.swift:45:24: note: convert 'nextID' to a 'let' constant to make 'Sendable' shared state immutable
    private static var nextID: Int = 0
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketServer/WebSocketPeer.swift:45:24: note: add '@MainActor' to make static property 'nextID' part of global actor 'MainActor'
    private static var nextID: Int = 0
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketServer/WebSocketPeer.swift:45:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var nextID: Int = 0
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketServer/WebSocketServer.swift:61:26: error: 'NWProtocolWebSocket' is only available in watchOS 6.0 or newer
                options: NWProtocolWebSocket.Options? = nil,
                         ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketServer/WebSocketServer.swift:59:12: note: add @available attribute to enclosing initializer
    public init(port: UInt16,
           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketServer/WebSocketServer.swift:21:14: note: add @available attribute to enclosing class
public class WebSocketServer {
             ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClient.swift:112:39: error: 'NWProtocolWebSocket' is only available in watchOS 6.0 or newer
    public func disconnect(closeCode: NWProtocolWebSocket.CloseCode) {
                                      ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClient.swift:112:17: note: add @available attribute to enclosing instance method
    public func disconnect(closeCode: NWProtocolWebSocket.CloseCode) {
                ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClient.swift:23:14: note: add @available attribute to enclosing class
public class WebSocketTransportClient: Transport, WebSocketClientDelegate {
             ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClient.swift:154:80: error: 'NWProtocolWebSocket' is only available in watchOS 6.0 or newer
    public func webSocketDidDisconnect(connection: WebSocketClient, closeCode: NWProtocolWebSocket.CloseCode, reason: Data?) {
                                                                               ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClient.swift:154:17: note: add @available attribute to enclosing instance method
    public func webSocketDidDisconnect(connection: WebSocketClient, closeCode: NWProtocolWebSocket.CloseCode, reason: Data?) {
                ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClient.swift:23:14: note: add @available attribute to enclosing class
public class WebSocketTransportClient: Transport, WebSocketClientDelegate {
             ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClient.swift:208:29: error: 'NWProtocolWebSocket' is only available in watchOS 6.0 or newer
        public var options: NWProtocolWebSocket.Options = WebSocketClient.defaultOptions
                            ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClient.swift:192:19: note: add @available attribute to enclosing struct
    public struct Configuration {
                  ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClientDelegate.swift:54:59: error: 'NWProtocolWebSocket' is only available in watchOS 6.0 or newer
                            didDisconnectedWithCode code: NWProtocolWebSocket.CloseCode,
                                                          ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClientDelegate.swift:53:10: note: add @available attribute to enclosing instance method
    func webSocketTransport(_ transport: WebSocketTransportClient,
         ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClientDelegate.swift:22:17: note: add @available attribute to enclosing protocol
public protocol WebSocketTransportClientDelegate: AnyObject {
                ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportServer/WebSocketTransportServer.swift:253:29: error: 'NWProtocolWebSocket' is only available in watchOS 6.0 or newer
        public var options: NWProtocolWebSocket.Options?
                            ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportServer/WebSocketTransportServer.swift:227:19: note: add @available attribute to enclosing struct
    public struct Configuration {
                  ^
Failed frontend command:
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Glider/Sources/Configuration.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/EventMessageFormatter.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/FieldsFormatter/FieldsFormatter+Field.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/FieldsFormatter/FieldsFormatter.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/JSONFormatter/JSONFormatter.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/MsgPackFormatter/MsgPackFormatter.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/MsgPackFormatter/Support/DataStream.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/MsgPackFormatter/Support/FlatValue.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/MsgPackFormatter/Support/Reader+Optionals.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/MsgPackFormatter/Support/Reader.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/MsgPackFormatter/Support/Types.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/MsgPackFormatter/Support/Writer+Optionals.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/MsgPackFormatter/Support/Writer.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/OSLogFormatter/OSLogFormatter.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/SysLogFormatter/SysLogFormatter.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/SysLogFormatter/SysLogPayload.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/TableFormatter/ASCII\ Table/ASCIITable+Borders.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/TableFormatter/ASCII\ Table/ASCIITable+Rendering.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/TableFormatter/ASCII\ Table/ASCIITable.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/TableFormatter/TableFormatter.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/TerminalFormatter/TerminalFormatter+Colorize.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/TerminalFormatter/TerminalFormatter.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/XCodeFormatter/XCodeFormatter+Colorize.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/XCodeFormatter/XCodeFormatter.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/GliderSDK.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Event.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Bundle+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Data+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Date+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Dictionary+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Optional+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/String+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/UIDevice+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Level.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/LogInterpolation/LogInterpolation+Formatters.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/LogInterpolation/LogInterpolation+Styles.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/LogInterpolation/LogInterpolation.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Message.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Metadata.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/ProcessIdentification.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Scope.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Serialization/Common\ Serializations/UIImage+Serialization.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Serialization/SerializableObject.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Serialization/SerializationStrategies.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/StatusMonitor.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/User.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Channel.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Context.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Log.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Transport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/TransportFilter.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/TransportManager.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/Base\ Transports/AsyncTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/Base\ Transports/BufferedTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/Base\ Transports/ThrottledTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/Console/ConsoleTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/Console/OSLogTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/File/FileTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/File/POSIXTransports/POSIXStreamTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/File/POSIXTransports/StdStreamsTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/File/SizeRotationFileTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/HTTPTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/HTTPTransportRequest.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/Support/AsyncOperation.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/Support/AsyncURLRequestsOperation.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/Support/URLSession+Extensions.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/LogstashTransport/LogstashTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport+Config.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransportDelegate.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransportServer/RemoteTransportServer.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransportServer/RemoteTransportServerClient.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransportServer/RemoteTransportServerDelegate.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/Network+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportConnection.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/SQLiteTransport+Delegate.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/SQLiteTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLite+Statement.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Additions.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher+Configuration.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/NetService+Extensions.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClientDelegate.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketServer/WebSocketPeer.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketServer/WebSocketServer.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketServer/WebSocketServerDelegate.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClient.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClientDelegate.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportServer/WebSocketTransportServer.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportServer/WebSocketTransportServerDelegate.swift -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/Objects-normal/armv7k/Glider_const_extract_protocols.json -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -enable-experimental-feature DebugDescriptionMacro -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteGlider/module.modulemap -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Glider -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.4 -target-sdk-name watchos11.4 -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -in-process-plugin-server-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/libSwiftInProcPluginServer.dylib -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/Objects-normal/armv7k/Glider.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/Objects-normal/armv7k/Glider.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/Objects-normal/armv7k/Glider-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/Objects-normal/armv7k/Glider-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/Objects-normal/armv7k/Glider-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/Objects-normal/armv7k/Glider.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/Objects-normal/armv7k/Glider.abi.json
SwiftCompile normal armv7k Compiling\ TerminalFormatter+Colorize.swift,\ TerminalFormatter.swift,\ XCodeFormatter+Colorize.swift,\ XCodeFormatter.swift,\ GliderSDK.swift,\ Event.swift,\ Bundle+Extension.swift,\ Data+Extension.swift,\ Date+Extension.swift,\ Dictionary+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/TerminalFormatter/TerminalFormatter+Colorize.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/TerminalFormatter/TerminalFormatter.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/XCodeFormatter/XCodeFormatter+Colorize.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/XCodeFormatter/XCodeFormatter.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/GliderSDK.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Event.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Bundle+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Data+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Date+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Dictionary+Extension.swift (in target 'Glider' from project 'Glider')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/TerminalFormatter/TerminalFormatter+Colorize.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/TerminalFormatter/TerminalFormatter.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/XCodeFormatter/XCodeFormatter+Colorize.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/XCodeFormatter/XCodeFormatter.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/GliderSDK.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Event.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Bundle+Extension.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Data+Extension.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Date+Extension.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Dictionary+Extension.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ POSIXStreamTransport.swift,\ StdStreamsTransport.swift,\ SizeRotationFileTransport.swift,\ HTTPTransport.swift,\ HTTPTransportRequest.swift,\ AsyncOperation.swift,\ AsyncURLRequestsOperation.swift,\ URLSession+Extensions.swift,\ LogstashTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/File/POSIXTransports/POSIXStreamTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/File/POSIXTransports/StdStreamsTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/File/SizeRotationFileTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/HTTPTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/HTTPTransportRequest.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/Support/AsyncOperation.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/Support/AsyncURLRequestsOperation.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/Support/URLSession+Extensions.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/LogstashTransport/LogstashTransport.swift (in target 'Glider' from project 'Glider')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/File/POSIXTransports/POSIXStreamTransport.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/File/POSIXTransports/StdStreamsTransport.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/File/SizeRotationFileTransport.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/HTTPTransport.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/HTTPTransportRequest.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/Support/AsyncOperation.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/Support/AsyncURLRequestsOperation.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/Support/URLSession+Extensions.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/LogstashTransport/LogstashTransport.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ SQLiteTransport+Delegate.swift,\ SQLiteTransport.swift,\ SQLite+Statement.swift,\ SQLiteDb+Additions.swift,\ SQLiteDb+Support.swift,\ SQLiteDb.swift,\ BonjourPublisher+Configuration.swift,\ BonjourPublisher.swift,\ NetService+Extensions.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/SQLiteTransport+Delegate.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/SQLiteTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLite+Statement.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Additions.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher+Configuration.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/NetService+Extensions.swift (in target 'Glider' from project 'Glider')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/SQLiteTransport+Delegate.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/SQLiteTransport.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLite+Statement.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Additions.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher+Configuration.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/NetService+Extensions.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ Optional+Extension.swift,\ String+Extension.swift,\ UIDevice+Extension.swift,\ Level.swift,\ LogInterpolation+Formatters.swift,\ LogInterpolation+Styles.swift,\ LogInterpolation.swift,\ Message.swift,\ Metadata.swift,\ ProcessIdentification.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Optional+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/String+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/UIDevice+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Level.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/LogInterpolation/LogInterpolation+Formatters.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/LogInterpolation/LogInterpolation+Styles.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/LogInterpolation/LogInterpolation.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Message.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Metadata.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/ProcessIdentification.swift (in target 'Glider' from project 'Glider')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Optional+Extension.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/String+Extension.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/UIDevice+Extension.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Level.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/LogInterpolation/LogInterpolation+Formatters.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/LogInterpolation/LogInterpolation+Styles.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/LogInterpolation/LogInterpolation.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Message.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Metadata.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/ProcessIdentification.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ Scope.swift,\ UIImage+Serialization.swift,\ SerializableObject.swift,\ SerializationStrategies.swift,\ StatusMonitor.swift,\ User.swift,\ Channel.swift,\ Context.swift,\ Log.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Scope.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Serialization/Common\ Serializations/UIImage+Serialization.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Serialization/SerializableObject.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Serialization/SerializationStrategies.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/StatusMonitor.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/User.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Channel.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Context.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Log.swift (in target 'Glider' from project 'Glider')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Scope.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Serialization/Common\ Serializations/UIImage+Serialization.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Serialization/SerializableObject.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Serialization/SerializationStrategies.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/StatusMonitor.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/User.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Channel.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Context.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Log.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ WebSocketClient.swift,\ WebSocketClientDelegate.swift,\ WebSocketPeer.swift,\ WebSocketServer.swift,\ WebSocketServerDelegate.swift,\ WebSocketTransportClient.swift,\ WebSocketTransportClientDelegate.swift,\ WebSocketTransportServer.swift,\ WebSocketTransportServerDelegate.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClientDelegate.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketServer/WebSocketPeer.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketServer/WebSocketServer.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketServer/WebSocketServerDelegate.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClient.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClientDelegate.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportServer/WebSocketTransportServer.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportServer/WebSocketTransportServerDelegate.swift (in target 'Glider' from project 'Glider')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClientDelegate.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketServer/WebSocketPeer.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketServer/WebSocketServer.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketServer/WebSocketServerDelegate.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClient.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClientDelegate.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportServer/WebSocketTransportServer.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportServer/WebSocketTransportServerDelegate.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ Transport.swift,\ TransportFilter.swift,\ TransportManager.swift,\ AsyncTransport.swift,\ BufferedTransport.swift,\ ThrottledTransport.swift,\ ConsoleTransport.swift,\ OSLogTransport.swift,\ FileTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Transport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/TransportFilter.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/TransportManager.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/Base\ Transports/AsyncTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/Base\ Transports/BufferedTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/Base\ Transports/ThrottledTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/Console/ConsoleTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/Console/OSLogTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/File/FileTransport.swift (in target 'Glider' from project 'Glider')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Transport.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/TransportFilter.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/TransportManager.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/Base\ Transports/AsyncTransport.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/Base\ Transports/BufferedTransport.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/Base\ Transports/ThrottledTransport.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/Console/ConsoleTransport.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/Console/OSLogTransport.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/File/FileTransport.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ RemoteTransport+Config.swift,\ RemoteTransport.swift,\ RemoteTransportDelegate.swift,\ RemoteTransportServer.swift,\ RemoteTransportServerClient.swift,\ RemoteTransportServerDelegate.swift,\ Network+Extension.swift,\ RemoteTransportConnection.swift,\ RemoteTransportPackets.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport+Config.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransportDelegate.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransportServer/RemoteTransportServer.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransportServer/RemoteTransportServerClient.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransportServer/RemoteTransportServerDelegate.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/Network+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportConnection.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift (in target 'Glider' from project 'Glider')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport+Config.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransportDelegate.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransportServer/RemoteTransportServer.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransportServer/RemoteTransportServerClient.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransportServer/RemoteTransportServerDelegate.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/Network+Extension.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportConnection.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ Configuration.swift,\ EventMessageFormatter.swift,\ FieldsFormatter+Field.swift,\ FieldsFormatter.swift,\ JSONFormatter.swift,\ MsgPackFormatter.swift,\ DataStream.swift,\ FlatValue.swift,\ Reader+Optionals.swift,\ Reader.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Configuration.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/EventMessageFormatter.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/FieldsFormatter/FieldsFormatter+Field.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/FieldsFormatter/FieldsFormatter.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/JSONFormatter/JSONFormatter.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/MsgPackFormatter/MsgPackFormatter.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/MsgPackFormatter/Support/DataStream.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/MsgPackFormatter/Support/FlatValue.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/MsgPackFormatter/Support/Reader+Optionals.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/MsgPackFormatter/Support/Reader.swift (in target 'Glider' from project 'Glider')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Configuration.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/EventMessageFormatter.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/FieldsFormatter/FieldsFormatter+Field.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/FieldsFormatter/FieldsFormatter.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/JSONFormatter/JSONFormatter.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/MsgPackFormatter/MsgPackFormatter.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/MsgPackFormatter/Support/DataStream.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/MsgPackFormatter/Support/FlatValue.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/MsgPackFormatter/Support/Reader+Optionals.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/MsgPackFormatter/Support/Reader.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftEmitModule normal arm64_32 Emitting\ module\ for\ Glider (in target 'Glider' from project 'Glider')
Command SwiftEmitModule failed with a nonzero exit code
** BUILD FAILED **
The following build commands failed:
	EmitSwiftModule normal armv7k (in target 'Glider' from project 'Glider')
	SwiftEmitModule normal armv7k Emitting\ module\ for\ Glider (in target 'Glider' from project 'Glider')
	SwiftEmitModule normal arm64_32 Emitting\ module\ for\ Glider (in target 'Glider' from project 'Glider')
	Building workspace spi-builder-workspace with scheme Glider
(4 failures)
Command line invocation:
    /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -resolvePackageDependencies
Resolve Package Graph
Resolved source packages:
  Glider: /Users/admin/builder/spi-builder-workspace
resolved source packages: Glider
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Glider",
  "name" : "Glider",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "10.0"
    },
    {
      "name" : "macos",
      "version" : "10.14"
    },
    {
      "name" : "tvos",
      "version" : "12.0"
    }
  ],
  "products" : [
    {
      "name" : "Glider",
      "targets" : [
        "Glider"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "GliderTests",
      "module_type" : "SwiftTarget",
      "name" : "GliderTests",
      "path" : "Tests/GliderTests",
      "sources" : [
        "Core+Tests.swift",
        "Formatters+Tests.swift",
        "LogInterpolation+Tests.swift",
        "TableFormatter+Tests.swift",
        "Transports/AsyncTransport+Tests.swift",
        "Transports/BufferedTransport+Tests.swift",
        "Transports/FileTransport+Tests.swift",
        "Transports/HTTPTransport+Tests.swift",
        "Transports/POSIXStreamTransport+Tests.swift",
        "Transports/RemoteTransport+Tests.swift",
        "Transports/SQLiteTransport+Tests.swift",
        "Transports/SizeRotationFileTransport+Tests.swift",
        "Transports/ThrottledTransport+Tests.swift",
        "Transports/Utilities/Foundation+Extensions.swift",
        "Transports/Utilities/HTTPServer.swift",
        "Transports/WebSocketTransportClient+Tests.swift",
        "Transports/WebSocketTransportServer+Tests.swift"
      ],
      "target_dependencies" : [
        "Glider"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Glider",
      "module_type" : "SwiftTarget",
      "name" : "Glider",
      "path" : "Glider/Sources",
      "product_memberships" : [
        "Glider"
      ],
      "sources" : [
        "Configuration.swift",
        "Formatters/EventMessageFormatter.swift",
        "Formatters/FieldsFormatter/FieldsFormatter+Field.swift",
        "Formatters/FieldsFormatter/FieldsFormatter.swift",
        "Formatters/JSONFormatter/JSONFormatter.swift",
        "Formatters/MsgPackFormatter/MsgPackFormatter.swift",
        "Formatters/MsgPackFormatter/Support/DataStream.swift",
        "Formatters/MsgPackFormatter/Support/FlatValue.swift",
        "Formatters/MsgPackFormatter/Support/Reader+Optionals.swift",
        "Formatters/MsgPackFormatter/Support/Reader.swift",
        "Formatters/MsgPackFormatter/Support/Types.swift",
        "Formatters/MsgPackFormatter/Support/Writer+Optionals.swift",
        "Formatters/MsgPackFormatter/Support/Writer.swift",
        "Formatters/OSLogFormatter/OSLogFormatter.swift",
        "Formatters/SysLogFormatter/SysLogFormatter.swift",
        "Formatters/SysLogFormatter/SysLogPayload.swift",
        "Formatters/TableFormatter/ASCII Table/ASCIITable+Borders.swift",
        "Formatters/TableFormatter/ASCII Table/ASCIITable+Rendering.swift",
        "Formatters/TableFormatter/ASCII Table/ASCIITable.swift",
        "Formatters/TableFormatter/TableFormatter.swift",
        "Formatters/TerminalFormatter/TerminalFormatter+Colorize.swift",
        "Formatters/TerminalFormatter/TerminalFormatter.swift",
        "Formatters/XCodeFormatter/XCodeFormatter+Colorize.swift",
        "Formatters/XCodeFormatter/XCodeFormatter.swift",
        "GliderSDK.swift",
        "Log/Additional Structures/Event.swift",
        "Log/Additional Structures/Foundation+Extensions/Bundle+Extension.swift",
        "Log/Additional Structures/Foundation+Extensions/Data+Extension.swift",
        "Log/Additional Structures/Foundation+Extensions/Date+Extension.swift",
        "Log/Additional Structures/Foundation+Extensions/Dictionary+Extension.swift",
        "Log/Additional Structures/Foundation+Extensions/Optional+Extension.swift",
        "Log/Additional Structures/Foundation+Extensions/String+Extension.swift",
        "Log/Additional Structures/Foundation+Extensions/UIDevice+Extension.swift",
        "Log/Additional Structures/Level.swift",
        "Log/Additional Structures/LogInterpolation/LogInterpolation+Formatters.swift",
        "Log/Additional Structures/LogInterpolation/LogInterpolation+Styles.swift",
        "Log/Additional Structures/LogInterpolation/LogInterpolation.swift",
        "Log/Additional Structures/Message.swift",
        "Log/Additional Structures/Metadata.swift",
        "Log/Additional Structures/ProcessIdentification.swift",
        "Log/Additional Structures/Scope.swift",
        "Log/Additional Structures/Serialization/Common Serializations/UIImage+Serialization.swift",
        "Log/Additional Structures/Serialization/SerializableObject.swift",
        "Log/Additional Structures/Serialization/SerializationStrategies.swift",
        "Log/Additional Structures/StatusMonitor.swift",
        "Log/Additional Structures/User.swift",
        "Log/Channel.swift",
        "Log/Context.swift",
        "Log/Log.swift",
        "Log/Transport.swift",
        "Log/TransportFilter.swift",
        "Log/TransportManager.swift",
        "Transports/Base Transports/AsyncTransport.swift",
        "Transports/Base Transports/BufferedTransport.swift",
        "Transports/Base Transports/ThrottledTransport.swift",
        "Transports/Console/ConsoleTransport.swift",
        "Transports/Console/OSLogTransport.swift",
        "Transports/File/FileTransport.swift",
        "Transports/File/POSIXTransports/POSIXStreamTransport.swift",
        "Transports/File/POSIXTransports/StdStreamsTransport.swift",
        "Transports/File/SizeRotationFileTransport.swift",
        "Transports/HTTPTransport/HTTPTransport.swift",
        "Transports/HTTPTransport/HTTPTransportRequest.swift",
        "Transports/HTTPTransport/Support/AsyncOperation.swift",
        "Transports/HTTPTransport/Support/AsyncURLRequestsOperation.swift",
        "Transports/HTTPTransport/Support/URLSession+Extensions.swift",
        "Transports/LogstashTransport/LogstashTransport.swift",
        "Transports/RemoteTransport/RemoteTransport+Config.swift",
        "Transports/RemoteTransport/RemoteTransport.swift",
        "Transports/RemoteTransport/RemoteTransportDelegate.swift",
        "Transports/RemoteTransport/RemoteTransportServer/RemoteTransportServer.swift",
        "Transports/RemoteTransport/RemoteTransportServer/RemoteTransportServerClient.swift",
        "Transports/RemoteTransport/RemoteTransportServer/RemoteTransportServerDelegate.swift",
        "Transports/RemoteTransport/Support/Network+Extension.swift",
        "Transports/RemoteTransport/Support/RemoteTransportConnection.swift",
        "Transports/RemoteTransport/Support/RemoteTransportPackets.swift",
        "Transports/SQLiteTransport/SQLiteTransport+Delegate.swift",
        "Transports/SQLiteTransport/SQLiteTransport.swift",
        "Transports/SQLiteTransport/Support/SQLite+Statement.swift",
        "Transports/SQLiteTransport/Support/SQLiteDb+Additions.swift",
        "Transports/SQLiteTransport/Support/SQLiteDb+Support.swift",
        "Transports/SQLiteTransport/Support/SQLiteDb.swift",
        "Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher+Configuration.swift",
        "Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift",
        "Transports/WebSocketTransport/Support/BonjourService/NetService+Extensions.swift",
        "Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift",
        "Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClientDelegate.swift",
        "Transports/WebSocketTransport/Support/WebSocketServer/WebSocketPeer.swift",
        "Transports/WebSocketTransport/Support/WebSocketServer/WebSocketServer.swift",
        "Transports/WebSocketTransport/Support/WebSocketServer/WebSocketServerDelegate.swift",
        "Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClient.swift",
        "Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClientDelegate.swift",
        "Transports/WebSocketTransport/WebSocketTransportServer/WebSocketTransportServer.swift",
        "Transports/WebSocketTransport/WebSocketTransportServer/WebSocketTransportServerDelegate.swift"
      ],
      "target_dependencies" : [
        "CSQLiteGlider"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CSQLiteGlider",
      "module_type" : "SystemLibraryTarget",
      "name" : "CSQLiteGlider",
      "path" : "Sources/CSQLiteGlider",
      "product_memberships" : [
        "Glider"
      ],
      "sources" : [
      ],
      "type" : "system-target"
    }
  ],
  "tools_version" : "5.0"
}
{
  "workspace" : {
    "name" : "spi-builder-workspace",
    "schemes" : [
      "Glider"
    ]
  }
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Glider -destination generic/platform=watchOS
Command line invocation:
    /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData build -scheme Glider -destination generic/platform=watchOS
Resolve Package Graph
Resolved source packages:
  Glider: /Users/admin/builder/spi-builder-workspace
ComputePackagePrebuildTargetDependencyGraph
Prepare packages
CreateBuildRequest
SendProjectDescription
CreateBuildOperation
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (3 targets)
    Target 'Glider' in project 'Glider'
        ➜ Explicit dependency on target 'Glider' in project 'Glider'
    Target 'Glider' in project 'Glider'
        ➜ Explicit dependency on target 'CSQLiteGlider' in project 'Glider'
    Target 'CSQLiteGlider' in project 'Glider' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -v -E -dM -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -x c -c /dev/null
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc --version
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -version_details
Build description signature: 681913c452a6528775f0f064589b93f0
Build description path: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCBuildData/681913c452a6528775f0f064589b93f0.xcbuilddata
ClangStatCache /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -o /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache
SwiftDriver Glider normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Glider -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/Objects-normal/arm64/Glider.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteGlider/module.modulemap -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/Objects-normal/arm64/Glider-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/Objects-normal/arm64/Glider.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/Objects-normal/arm64/Glider_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/Objects-normal/arm64/Glider-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver Glider normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Glider -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/Objects-normal/arm64_32/Glider.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteGlider/module.modulemap -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/Objects-normal/arm64_32/Glider-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/Objects-normal/arm64_32/Glider.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/Objects-normal/arm64_32/Glider_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/Objects-normal/arm64_32/Glider-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver Glider normal armv7k com.apple.xcode.tools.swift.compiler (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Glider -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/Objects-normal/armv7k/Glider.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteGlider/module.modulemap -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/Objects-normal/armv7k/Glider-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/Objects-normal/armv7k/Glider.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/Objects-normal/armv7k/Glider_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/Objects-normal/armv7k/Glider-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ Glider (in target 'Glider' from project 'Glider')
EmitSwiftModule normal arm64_32 (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftEmitModule normal arm64 Emitting\ module\ for\ Glider (in target 'Glider' from project 'Glider')
EmitSwiftModule normal arm64 (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 Compiling\ POSIXStreamTransport.swift,\ StdStreamsTransport.swift,\ SizeRotationFileTransport.swift,\ HTTPTransport.swift,\ HTTPTransportRequest.swift,\ AsyncOperation.swift,\ AsyncURLRequestsOperation.swift,\ URLSession+Extensions.swift,\ LogstashTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/File/POSIXTransports/POSIXStreamTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/File/POSIXTransports/StdStreamsTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/File/SizeRotationFileTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/HTTPTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/HTTPTransportRequest.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/Support/AsyncOperation.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/Support/AsyncURLRequestsOperation.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/Support/URLSession+Extensions.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/LogstashTransport/LogstashTransport.swift (in target 'Glider' from project 'Glider')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/File/POSIXTransports/POSIXStreamTransport.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/File/POSIXTransports/StdStreamsTransport.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/File/SizeRotationFileTransport.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/HTTPTransport.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/HTTPTransportRequest.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/Support/AsyncOperation.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/Support/AsyncURLRequestsOperation.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/Support/URLSession+Extensions.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/LogstashTransport/LogstashTransport.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 Compiling\ TerminalFormatter+Colorize.swift,\ TerminalFormatter.swift,\ XCodeFormatter+Colorize.swift,\ XCodeFormatter.swift,\ GliderSDK.swift,\ Event.swift,\ Bundle+Extension.swift,\ Data+Extension.swift,\ Date+Extension.swift,\ Dictionary+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/TerminalFormatter/TerminalFormatter+Colorize.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/TerminalFormatter/TerminalFormatter.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/XCodeFormatter/XCodeFormatter+Colorize.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/XCodeFormatter/XCodeFormatter.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/GliderSDK.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Event.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Bundle+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Data+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Date+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Dictionary+Extension.swift (in target 'Glider' from project 'Glider')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/TerminalFormatter/TerminalFormatter+Colorize.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/TerminalFormatter/TerminalFormatter.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/XCodeFormatter/XCodeFormatter+Colorize.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/XCodeFormatter/XCodeFormatter.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/GliderSDK.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Event.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Bundle+Extension.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Data+Extension.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Date+Extension.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Dictionary+Extension.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ Optional+Extension.swift,\ String+Extension.swift,\ UIDevice+Extension.swift,\ Level.swift,\ LogInterpolation+Formatters.swift,\ LogInterpolation+Styles.swift,\ LogInterpolation.swift,\ Message.swift,\ Metadata.swift,\ ProcessIdentification.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Optional+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/String+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/UIDevice+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Level.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/LogInterpolation/LogInterpolation+Formatters.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/LogInterpolation/LogInterpolation+Styles.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/LogInterpolation/LogInterpolation.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Message.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Metadata.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/ProcessIdentification.swift (in target 'Glider' from project 'Glider')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Optional+Extension.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/String+Extension.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/UIDevice+Extension.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Level.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/LogInterpolation/LogInterpolation+Formatters.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/LogInterpolation/LogInterpolation+Styles.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/LogInterpolation/LogInterpolation.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Message.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Metadata.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/ProcessIdentification.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ Transport.swift,\ TransportFilter.swift,\ TransportManager.swift,\ AsyncTransport.swift,\ BufferedTransport.swift,\ ThrottledTransport.swift,\ ConsoleTransport.swift,\ OSLogTransport.swift,\ FileTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Transport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/TransportFilter.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/TransportManager.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/Base\ Transports/AsyncTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/Base\ Transports/BufferedTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/Base\ Transports/ThrottledTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/Console/ConsoleTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/Console/OSLogTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/File/FileTransport.swift (in target 'Glider' from project 'Glider')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Transport.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/TransportFilter.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/TransportManager.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/Base\ Transports/AsyncTransport.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/Base\ Transports/BufferedTransport.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/Base\ Transports/ThrottledTransport.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/Console/ConsoleTransport.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/Console/OSLogTransport.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/File/FileTransport.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 Compiling\ SQLiteTransport+Delegate.swift,\ SQLiteTransport.swift,\ SQLite+Statement.swift,\ SQLiteDb+Additions.swift,\ SQLiteDb+Support.swift,\ SQLiteDb.swift,\ BonjourPublisher+Configuration.swift,\ BonjourPublisher.swift,\ NetService+Extensions.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/SQLiteTransport+Delegate.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/SQLiteTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLite+Statement.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Additions.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher+Configuration.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/NetService+Extensions.swift (in target 'Glider' from project 'Glider')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/SQLiteTransport+Delegate.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/SQLiteTransport.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLite+Statement.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Additions.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher+Configuration.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/NetService+Extensions.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftEmitModule normal armv7k Emitting\ module\ for\ Glider (in target 'Glider' from project 'Glider')
Failed frontend command:
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Glider/Sources/Configuration.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/EventMessageFormatter.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/FieldsFormatter/FieldsFormatter+Field.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/FieldsFormatter/FieldsFormatter.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/JSONFormatter/JSONFormatter.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/MsgPackFormatter/MsgPackFormatter.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/MsgPackFormatter/Support/DataStream.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/MsgPackFormatter/Support/FlatValue.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/MsgPackFormatter/Support/Reader+Optionals.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/MsgPackFormatter/Support/Reader.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/MsgPackFormatter/Support/Types.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/MsgPackFormatter/Support/Writer+Optionals.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/MsgPackFormatter/Support/Writer.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/OSLogFormatter/OSLogFormatter.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/SysLogFormatter/SysLogFormatter.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/SysLogFormatter/SysLogPayload.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/TableFormatter/ASCII\ Table/ASCIITable+Borders.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/TableFormatter/ASCII\ Table/ASCIITable+Rendering.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/TableFormatter/ASCII\ Table/ASCIITable.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/TableFormatter/TableFormatter.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/TerminalFormatter/TerminalFormatter+Colorize.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/TerminalFormatter/TerminalFormatter.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/XCodeFormatter/XCodeFormatter+Colorize.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Formatters/XCodeFormatter/XCodeFormatter.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/GliderSDK.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Event.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Bundle+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Data+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Date+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Dictionary+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Optional+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/String+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/UIDevice+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Level.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/LogInterpolation/LogInterpolation+Formatters.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/LogInterpolation/LogInterpolation+Styles.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/LogInterpolation/LogInterpolation.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Message.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Metadata.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/ProcessIdentification.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Scope.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Serialization/Common\ Serializations/UIImage+Serialization.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Serialization/SerializableObject.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Serialization/SerializationStrategies.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/StatusMonitor.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/User.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Channel.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Context.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Log.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Transport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/TransportFilter.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/TransportManager.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/Base\ Transports/AsyncTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/Base\ Transports/BufferedTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/Base\ Transports/ThrottledTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/Console/ConsoleTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/Console/OSLogTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/File/FileTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/File/POSIXTransports/POSIXStreamTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/File/POSIXTransports/StdStreamsTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/File/SizeRotationFileTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/HTTPTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/HTTPTransportRequest.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/Support/AsyncOperation.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/Support/AsyncURLRequestsOperation.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/Support/URLSession+Extensions.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/LogstashTransport/LogstashTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport+Config.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransportDelegate.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransportServer/RemoteTransportServer.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransportServer/RemoteTransportServerClient.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransportServer/RemoteTransportServerDelegate.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/Network+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportConnection.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/SQLiteTransport+Delegate.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/SQLiteTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLite+Statement.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Additions.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb+Support.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/SQLiteTransport/Support/SQLiteDb.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher+Configuration.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/NetService+Extensions.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClientDelegate.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketServer/WebSocketPeer.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketServer/WebSocketServer.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketServer/WebSocketServerDelegate.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClient.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClientDelegate.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportServer/WebSocketTransportServer.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportServer/WebSocketTransportServerDelegate.swift -target armv7k-apple-watchos5.0 -enable-objc-interop -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/Objects-normal/armv7k/Glider_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -empty-abi-descriptor -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/Sources/CSQLiteGlider/module.modulemap -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Glider -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.4 -target-sdk-name watchos11.4 -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -in-process-plugin-server-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/libSwiftInProcPluginServer.dylib -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/Objects-normal/armv7k/Glider.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/Objects-normal/armv7k/Glider.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/Objects-normal/armv7k/Glider-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/Objects-normal/armv7k/Glider-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/Objects-normal/armv7k/Glider-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/Objects-normal/armv7k/Glider.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Glider.build/Debug-watchos/Glider.build/Objects-normal/armv7k/Glider.abi.json
EmitSwiftModule normal armv7k (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional Structures/Foundation+Extensions/UIDevice+Extension.swift:151:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
extension CGSize: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional Structures/Foundation+Extensions/UIDevice+Extension.swift:151:1: note: add '@retroactive' to silence this warning
extension CGSize: CustomStringConvertible {
^                 ~~~~~~~~~~~~~~~~~~~~~~~
                  @retroactive CustomStringConvertible
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/Support/AsyncOperation.swift:19:14: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
public class AsyncOperation: Operation {
             ^
                                      , @unchecked Sendable
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/HTTPTransport/Support/AsyncURLRequestsOperation.swift:18:20: warning: class 'AsyncURLRequestOperation' must restate inherited '@unchecked Sendable' conformance
public final class AsyncURLRequestOperation: AsyncOperation {
                   ^
                                                           , @unchecked Sendable
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:73:42: error: 'NWBrowser' is only available in watchOS 6.0 or newer
    public private(set) var servers: Set<NWBrowser.Result> = []
                                         ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:39:14: note: add @available attribute to enclosing class
public class RemoteTransport: Transport {
             ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:94:26: error: 'NWBrowser' is only available in watchOS 6.0 or newer
    private var browser: NWBrowser?
                         ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:39:14: note: add @available attribute to enclosing class
public class RemoteTransport: Transport {
             ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:102:34: error: 'NWBrowser' is only available in watchOS 6.0 or newer
    private var connectedServer: NWBrowser.Result?
                                 ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:39:14: note: add @available attribute to enclosing class
public class RemoteTransport: Transport {
             ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:221:38: error: 'NWBrowser' is only available in watchOS 6.0 or newer
    private func suitableServer() -> NWBrowser.Result? {
                                     ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:221:18: note: add @available attribute to enclosing instance method
    private func suitableServer() -> NWBrowser.Result? {
                 ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:39:14: note: add @available attribute to enclosing class
public class RemoteTransport: Transport {
             ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:242:36: error: 'NWBrowser' is only available in watchOS 6.0 or newer
    public func connect(to server: NWBrowser.Result) {
                                   ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:242:17: note: add @available attribute to enclosing instance method
    public func connect(to server: NWBrowser.Result) {
                ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:39:14: note: add @available attribute to enclosing class
public class RemoteTransport: Transport {
             ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:268:44: error: 'NWBrowser' is only available in watchOS 6.0 or newer
    private func openConnection(to server: NWBrowser.Result) {
                                           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:268:18: note: add @available attribute to enclosing instance method
    private func openConnection(to server: NWBrowser.Result) {
                 ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift:39:14: note: add @available attribute to enclosing class
public class RemoteTransport: Transport {
             ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/Network+Extension.swift:23:11: error: 'NWBrowser' is only available in watchOS 6.0 or newer
extension NWBrowser.Result {
          ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/Network+Extension.swift:23:1: note: add @available attribute to enclosing extension
extension NWBrowser.Result {
^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:41:29: error: 'NetService' is unavailable in watchOS
    private var netService: NetService
                            ^~~~~~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h:88:12: note: 'NetService' has been explicitly marked unavailable here
@interface NSNetService : NSObject {
           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:93:32: error: 'NetService' is unavailable in watchOS
    public func start(options: NetService.Options = [.listenForConnections],
                               ^~~~~~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h:88:12: note: 'NetService' has been explicitly marked unavailable here
@interface NSNetService : NSObject {
           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:127:41: error: 'NetService' is unavailable in watchOS
    func netServiceDidPublish(_ sender: NetService) {
                                        ^~~~~~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h:88:12: note: 'NetService' has been explicitly marked unavailable here
@interface NSNetService : NSObject {
           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:132:31: error: 'NetService' is unavailable in watchOS
    func netService(_ sender: NetService, didNotPublish errorDict: [String: NSNumber]) {
                              ^~~~~~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h:88:12: note: 'NetService' has been explicitly marked unavailable here
@interface NSNetService : NSObject {
           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:138:38: error: 'NetService' is unavailable in watchOS
    func netServiceDidStop(_ sender: NetService) {
                                     ^~~~~~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h:88:12: note: 'NetService' has been explicitly marked unavailable here
@interface NSNetService : NSObject {
           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/BonjourPublisher.swift:118:57: error: 'NetServiceDelegate' is unavailable in watchOS
private class BonjourPublisherObjectDelegate: NSObject, NetServiceDelegate {
                                                        ^~~~~~~~~~~~~~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h:244:11: note: 'NetServiceDelegate' has been explicitly marked unavailable here
@protocol NSNetServiceDelegate <NSObject>
          ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/BonjourService/NetService+Extensions.swift:18:20: error: 'NetService' is unavailable in watchOS
internal extension NetService {
                   ^~~~~~~~~~
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSNetServices.h:88:12: note: 'NetService' has been explicitly marked unavailable here
@interface NSNetService : NSObject {
           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:29:39: error: 'NWProtocolWebSocket' is only available in watchOS 6.0 or newer
    public static var defaultOptions: NWProtocolWebSocket.Options {
                                      ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:29:23: note: add @available attribute to enclosing static property
    public static var defaultOptions: NWProtocolWebSocket.Options {
                      ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:23:12: note: add @available attribute to enclosing class
open class WebSocketClient {
           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:64:26: error: 'NWProtocolWebSocket' is only available in watchOS 6.0 or newer
                options: NWProtocolWebSocket.Options = WebSocketClient.defaultOptions,
                         ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:62:12: note: add @available attribute to enclosing initializer
    public init(url: URL,
           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:23:12: note: add @available attribute to enclosing class
open class WebSocketClient {
           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:90:38: error: 'NWProtocolWebSocket' is only available in watchOS 6.0 or newer
                            options: NWProtocolWebSocket.Options = WebSocketClient.defaultOptions,
                                     ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:88:24: note: add @available attribute to enclosing initializer
    public convenience init(request: URLRequest,
                       ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:23:12: note: add @available attribute to enclosing class
open class WebSocketClient {
           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:195:37: error: 'NWProtocolWebSocket' is only available in watchOS 6.0 or newer
    open func disconnect(closeCode: NWProtocolWebSocket.CloseCode = .protocolCode(.normalClosure)) {
                                    ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:195:15: note: add @available attribute to enclosing instance method
    open func disconnect(closeCode: NWProtocolWebSocket.CloseCode = .protocolCode(.normalClosure)) {
              ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:23:12: note: add @available attribute to enclosing class
open class WebSocketClient {
           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:367:60: error: 'NWProtocolWebSocket' is only available in watchOS 6.0 or newer
    private func scheduleDisconnectionReporting(closeCode: NWProtocolWebSocket.CloseCode,
                                                           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:367:18: note: add @available attribute to enclosing instance method
    private func scheduleDisconnectionReporting(closeCode: NWProtocolWebSocket.CloseCode,
                 ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClient.swift:23:12: note: add @available attribute to enclosing class
open class WebSocketClient {
           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClientDelegate.swift:34:44: error: 'NWProtocolWebSocket' is only available in watchOS 6.0 or newer
                                closeCode: NWProtocolWebSocket.CloseCode,
                                           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClientDelegate.swift:33:10: note: add @available attribute to enclosing instance method
    func webSocketDidDisconnect(connection: WebSocketClient,
         ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketClient/WebSocketClientDelegate.swift:22:17: note: add @available attribute to enclosing protocol
public protocol WebSocketClientDelegate: AnyObject {
                ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketServer/WebSocketServer.swift:61:26: error: 'NWProtocolWebSocket' is only available in watchOS 6.0 or newer
                options: NWProtocolWebSocket.Options? = nil,
                         ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketServer/WebSocketServer.swift:59:12: note: add @available attribute to enclosing initializer
    public init(port: UInt16,
           ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/Support/WebSocketServer/WebSocketServer.swift:21:14: note: add @available attribute to enclosing class
public class WebSocketServer {
             ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClient.swift:112:39: error: 'NWProtocolWebSocket' is only available in watchOS 6.0 or newer
    public func disconnect(closeCode: NWProtocolWebSocket.CloseCode) {
                                      ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClient.swift:112:17: note: add @available attribute to enclosing instance method
    public func disconnect(closeCode: NWProtocolWebSocket.CloseCode) {
                ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClient.swift:23:14: note: add @available attribute to enclosing class
public class WebSocketTransportClient: Transport, WebSocketClientDelegate {
             ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClient.swift:154:80: error: 'NWProtocolWebSocket' is only available in watchOS 6.0 or newer
    public func webSocketDidDisconnect(connection: WebSocketClient, closeCode: NWProtocolWebSocket.CloseCode, reason: Data?) {
                                                                               ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClient.swift:154:17: note: add @available attribute to enclosing instance method
    public func webSocketDidDisconnect(connection: WebSocketClient, closeCode: NWProtocolWebSocket.CloseCode, reason: Data?) {
                ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClient.swift:23:14: note: add @available attribute to enclosing class
public class WebSocketTransportClient: Transport, WebSocketClientDelegate {
             ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClient.swift:208:29: error: 'NWProtocolWebSocket' is only available in watchOS 6.0 or newer
        public var options: NWProtocolWebSocket.Options = WebSocketClient.defaultOptions
                            ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClient.swift:192:19: note: add @available attribute to enclosing struct
    public struct Configuration {
                  ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClientDelegate.swift:54:59: error: 'NWProtocolWebSocket' is only available in watchOS 6.0 or newer
                            didDisconnectedWithCode code: NWProtocolWebSocket.CloseCode,
                                                          ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClientDelegate.swift:53:10: note: add @available attribute to enclosing instance method
    func webSocketTransport(_ transport: WebSocketTransportClient,
         ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportClient/WebSocketTransportClientDelegate.swift:22:17: note: add @available attribute to enclosing protocol
public protocol WebSocketTransportClientDelegate: AnyObject {
                ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportServer/WebSocketTransportServer.swift:253:29: error: 'NWProtocolWebSocket' is only available in watchOS 6.0 or newer
        public var options: NWProtocolWebSocket.Options?
                            ^
/Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/WebSocketTransport/WebSocketTransportServer/WebSocketTransportServer.swift:227:19: note: add @available attribute to enclosing struct
    public struct Configuration {
                  ^
SwiftCompile normal armv7k Compiling\ Optional+Extension.swift,\ String+Extension.swift,\ UIDevice+Extension.swift,\ Level.swift,\ LogInterpolation+Formatters.swift,\ LogInterpolation+Styles.swift,\ LogInterpolation.swift,\ Message.swift,\ Metadata.swift,\ ProcessIdentification.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Optional+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/String+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/UIDevice+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Level.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/LogInterpolation/LogInterpolation+Formatters.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/LogInterpolation/LogInterpolation+Styles.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/LogInterpolation/LogInterpolation.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Message.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Metadata.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/ProcessIdentification.swift (in target 'Glider' from project 'Glider')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/Optional+Extension.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/String+Extension.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Foundation+Extensions/UIDevice+Extension.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Level.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/LogInterpolation/LogInterpolation+Formatters.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/LogInterpolation/LogInterpolation+Styles.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/LogInterpolation/LogInterpolation.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Message.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Metadata.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/ProcessIdentification.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 Compiling\ Scope.swift,\ UIImage+Serialization.swift,\ SerializableObject.swift,\ SerializationStrategies.swift,\ StatusMonitor.swift,\ User.swift,\ Channel.swift,\ Context.swift,\ Log.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Scope.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Serialization/Common\ Serializations/UIImage+Serialization.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Serialization/SerializableObject.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Serialization/SerializationStrategies.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/StatusMonitor.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/User.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Channel.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Context.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Log.swift (in target 'Glider' from project 'Glider')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Scope.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Serialization/Common\ Serializations/UIImage+Serialization.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Serialization/SerializableObject.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/Serialization/SerializationStrategies.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/StatusMonitor.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Additional\ Structures/User.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Channel.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Context.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Glider/Sources/Log/Log.swift (in target 'Glider' from project 'Glider')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 Compiling\ RemoteTransport+Config.swift,\ RemoteTransport.swift,\ RemoteTransportDelegate.swift,\ RemoteTransportServer.swift,\ RemoteTransportServerClient.swift,\ RemoteTransportServerDelegate.swift,\ Network+Extension.swift,\ RemoteTransportConnection.swift,\ RemoteTransportPackets.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport+Config.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransportDelegate.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransportServer/RemoteTransportServer.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransportServer/RemoteTransportServerClient.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransportServer/RemoteTransportServerDelegate.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/Network+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportConnection.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift (in target 'Glider' from project 'Glider')
Command SwiftCompile failed with a nonzero exit code
** BUILD FAILED **
The following build commands failed:
	SwiftEmitModule normal armv7k Emitting\ module\ for\ Glider (in target 'Glider' from project 'Glider')
	EmitSwiftModule normal armv7k (in target 'Glider' from project 'Glider')
	SwiftCompile normal arm64_32 Compiling\ RemoteTransport+Config.swift,\ RemoteTransport.swift,\ RemoteTransportDelegate.swift,\ RemoteTransportServer.swift,\ RemoteTransportServerClient.swift,\ RemoteTransportServerDelegate.swift,\ Network+Extension.swift,\ RemoteTransportConnection.swift,\ RemoteTransportPackets.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport+Config.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransport.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransportDelegate.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransportServer/RemoteTransportServer.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransportServer/RemoteTransportServerClient.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/RemoteTransportServer/RemoteTransportServerDelegate.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/Network+Extension.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportConnection.swift /Users/admin/builder/spi-builder-workspace/Glider/Sources/Transports/RemoteTransport/Support/RemoteTransportPackets.swift (in target 'Glider' from project 'Glider')
	Building workspace spi-builder-workspace with scheme Glider
(4 failures)
BUILD FAILURE 6.1 watchOS