Build Information
Successful build of Occurrence, reference main (c29423
), with Swift 6.1 for watchOS using Xcode 16.3 on 30 Apr 2025 23:10:56 UTC.
Swift 6 data race errors: 33
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Occurrence -destination generic/platform=watchOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Build Log
static var `default`: LogModel = .version_1_0_0
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:20:16: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'Version_1_0_0' may have shared mutable state; this is an error in the Swift 6 language mode
static let instance: Version_1_0_0 = Version_1_0_0()
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:17:7: note: class 'Version_1_0_0' does not conform to the 'Sendable' protocol
class Version_1_0_0: NSManagedObjectModel, NSSecureCoding {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:20:16: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
static let instance: Version_1_0_0 = Version_1_0_0()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:20:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let instance: Version_1_0_0 = Version_1_0_0()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/DecodingError+Occurrence.swift:4:1: warning: extension declares a conformance of imported type 'DecodingError' to imported protocol 'CustomNSError'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension DecodingError: CustomNSError, LoggableError {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/DecodingError+Occurrence.swift:4:1: note: add '@retroactive' to silence this warning
extension DecodingError: CustomNSError, LoggableError {
^ ~~~~~~~~~~~~~
@retroactive CustomNSError
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/EncodingError+Occurrence.swift:4:1: warning: extension declares a conformance of imported type 'EncodingError' to imported protocol 'CustomNSError'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension EncodingError: CustomNSError, LoggableError {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/EncodingError+Occurrence.swift:4:1: note: add '@retroactive' to silence this warning
extension EncodingError: CustomNSError, LoggableError {
^ ~~~~~~~~~~~~~
@retroactive CustomNSError
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Entry.swift:7:27: warning: static property 'gmtDateFormatter' 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 gmtDateFormatter: DateFormatter = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Entry.swift:7:27: note: convert 'gmtDateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
public static var gmtDateFormatter: DateFormatter = {
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Entry.swift:7:27: note: add '@MainActor' to make static property 'gmtDateFormatter' part of global actor 'MainActor'
public static var gmtDateFormatter: DateFormatter = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Entry.swift:7:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var gmtDateFormatter: DateFormatter = {
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Subsystem.swift:53:16: warning: static property 'occurrence' is not concurrency-safe because non-'Sendable' type 'Logger.Subsystem' may have shared mutable state; this is an error in the Swift 6 language mode
static let occurrence: Self = "com.richardpiazza.occurrence"
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Subsystem.swift:14:12: note: consider making struct 'Subsystem' conform to the 'Sendable' protocol
struct Subsystem: ExpressibleByStringLiteral, Codable, Hashable, Comparable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Subsystem.swift:53:16: note: add '@MainActor' to make static property 'occurrence' part of global actor 'MainActor'
static let occurrence: Self = "com.richardpiazza.occurrence"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Subsystem.swift:53:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let occurrence: Self = "com.richardpiazza.occurrence"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.Level+Occurrence.swift:25:1: warning: extension declares a conformance of imported type 'Level' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Logging' introduce this conformance in the future
extension Logger.Level: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.Level+Occurrence.swift:25:1: note: add '@retroactive' to silence this warning
extension Logger.Level: CustomStringConvertible {
^ ~~~~~~~~~~~~~~~~~~~~~~~
@retroactive CustomStringConvertible
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:11:23: warning: static property 'configuration' 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 configuration: Configuration = .init()
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:11:23: note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
public static var configuration: Configuration = .init()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:11:23: note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
public static var configuration: Configuration = .init()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:11:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var configuration: Configuration = .init()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:12:24: warning: static property 'bootstrapped' 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 bootstrapped: Bool = false
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:12:24: note: convert 'bootstrapped' to a 'let' constant to make 'Sendable' shared state immutable
private static var bootstrapped: Bool = false
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:12:24: note: add '@MainActor' to make static property 'bootstrapped' part of global actor 'MainActor'
private static var bootstrapped: Bool = false
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:12:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var bootstrapped: Bool = false
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:30:23: warning: static property 'logStreamer' is not concurrency-safe because non-'Sendable' type 'any LogStreamer' may have shared mutable state; this is an error in the Swift 6 language mode
public static let logStreamer: LogStreamer = OccurrenceLogStreamer()
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/LogStreamer.swift:7:17: note: protocol 'LogStreamer' does not conform to the 'Sendable' protocol
public protocol LogStreamer {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:30:23: note: add '@MainActor' to make static property 'logStreamer' part of global actor 'MainActor'
public static let logStreamer: LogStreamer = OccurrenceLogStreamer()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:30:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let logStreamer: LogStreamer = OccurrenceLogStreamer()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:32:23: warning: static property 'logProvider' 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 logProvider: LogProvider = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:32:23: note: convert 'logProvider' to a 'let' constant to make 'Sendable' shared state immutable
public static var logProvider: LogProvider = {
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:32:23: note: add '@MainActor' to make static property 'logProvider' part of global actor 'MainActor'
public static var logProvider: LogProvider = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:32:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var logProvider: LogProvider = {
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry.swift:38:16: warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var instance: SQLiteEntry = { SQLiteEntry() }()
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry.swift:38:16: note: convert 'instance' to a 'let' constant to make 'Sendable' shared state immutable
static var instance: SQLiteEntry = { SQLiteEntry() }()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry.swift:38:16: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
static var instance: SQLiteEntry = { SQLiteEntry() }()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry.swift:38:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var instance: SQLiteEntry = { SQLiteEntry() }()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:336:16: warning: static property 'sub1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var sub1: Logger.Subsystem = "package.diagnostics"
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:336:16: note: convert 'sub1' to a 'let' constant to make 'Sendable' shared state immutable
static var sub1: Logger.Subsystem = "package.diagnostics"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:336:16: note: add '@MainActor' to make static property 'sub1' part of global actor 'MainActor'
static var sub1: Logger.Subsystem = "package.diagnostics"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:336:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var sub1: Logger.Subsystem = "package.diagnostics"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:337:16: warning: static property 'sub2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var sub2: Logger.Subsystem = "app.iOS"
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:337:16: note: convert 'sub2' to a 'let' constant to make 'Sendable' shared state immutable
static var sub2: Logger.Subsystem = "app.iOS"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:337:16: note: add '@MainActor' to make static property 'sub2' part of global actor 'MainActor'
static var sub2: Logger.Subsystem = "app.iOS"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:337:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var sub2: Logger.Subsystem = "app.iOS"
^
nonisolated(unsafe)
SwiftCompile normal armv7k Compiling\ Array+Occurrence.swift,\ CocoaError+Occurrence.swift,\ DecodingError+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Array+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/CocoaError+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/DecodingError+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Array+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/CocoaError+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/DecodingError+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/DecodingError+Occurrence.swift:4:1: warning: extension declares a conformance of imported type 'DecodingError' to imported protocol 'CustomNSError'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension DecodingError: CustomNSError, LoggableError {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/DecodingError+Occurrence.swift:4:1: note: add '@retroactive' to silence this warning
extension DecodingError: CustomNSError, LoggableError {
^ ~~~~~~~~~~~~~
@retroactive CustomNSError
SwiftCompile normal armv7k Compiling\ Logger+Entry.swift,\ Logger+Filter.swift,\ Logger+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Entry.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Filter.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Entry.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Entry.swift:7:27: warning: static property 'gmtDateFormatter' 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 gmtDateFormatter: DateFormatter = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Entry.swift:7:27: note: convert 'gmtDateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
public static var gmtDateFormatter: DateFormatter = {
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Entry.swift:7:27: note: add '@MainActor' to make static property 'gmtDateFormatter' part of global actor 'MainActor'
public static var gmtDateFormatter: DateFormatter = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Entry.swift:7:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var gmtDateFormatter: DateFormatter = {
^
nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Filter.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k Compiling\ Logger+Subsystem.swift,\ Logger.Level+Occurrence.swift,\ Logger.Message+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Subsystem.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.Level+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.Message+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Subsystem.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Subsystem.swift:53:16: warning: static property 'occurrence' is not concurrency-safe because non-'Sendable' type 'Logger.Subsystem' may have shared mutable state; this is an error in the Swift 6 language mode
static let occurrence: Self = "com.richardpiazza.occurrence"
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Subsystem.swift:14:12: note: consider making struct 'Subsystem' conform to the 'Sendable' protocol
struct Subsystem: ExpressibleByStringLiteral, Codable, Hashable, Comparable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Subsystem.swift:53:16: note: add '@MainActor' to make static property 'occurrence' part of global actor 'MainActor'
static let occurrence: Self = "com.richardpiazza.occurrence"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Subsystem.swift:53:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let occurrence: Self = "com.richardpiazza.occurrence"
^
nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.Level+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.Level+Occurrence.swift:25:1: warning: extension declares a conformance of imported type 'Level' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Logging' introduce this conformance in the future
extension Logger.Level: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.Level+Occurrence.swift:25:1: note: add '@retroactive' to silence this warning
extension Logger.Level: CustomStringConvertible {
^ ~~~~~~~~~~~~~~~~~~~~~~~
@retroactive CustomStringConvertible
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.Message+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k Compiling\ URLError+Occurrence.swift,\ LazyLogger.swift,\ LogProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/URLError+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/LazyLogger.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/LogProvider.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/URLError+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/LazyLogger.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/LogProvider.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k Compiling\ LogStreamer.swift,\ LoggableError.swift,\ Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/LogStreamer.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/LoggableError.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/LogStreamer.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/LoggableError.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:11:23: warning: static property 'configuration' 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 configuration: Configuration = .init()
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:11:23: note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
public static var configuration: Configuration = .init()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:11:23: note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
public static var configuration: Configuration = .init()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:11:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var configuration: Configuration = .init()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:12:24: warning: static property 'bootstrapped' 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 bootstrapped: Bool = false
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:12:24: note: convert 'bootstrapped' to a 'let' constant to make 'Sendable' shared state immutable
private static var bootstrapped: Bool = false
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:12:24: note: add '@MainActor' to make static property 'bootstrapped' part of global actor 'MainActor'
private static var bootstrapped: Bool = false
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:12:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var bootstrapped: Bool = false
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:30:23: warning: static property 'logStreamer' is not concurrency-safe because non-'Sendable' type 'any LogStreamer' may have shared mutable state; this is an error in the Swift 6 language mode
public static let logStreamer: LogStreamer = OccurrenceLogStreamer()
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/LogStreamer.swift:7:17: note: protocol 'LogStreamer' does not conform to the 'Sendable' protocol
public protocol LogStreamer {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:30:23: note: add '@MainActor' to make static property 'logStreamer' part of global actor 'MainActor'
public static let logStreamer: LogStreamer = OccurrenceLogStreamer()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:30:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let logStreamer: LogStreamer = OccurrenceLogStreamer()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:32:23: warning: static property 'logProvider' 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 logProvider: LogProvider = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:32:23: note: convert 'logProvider' to a 'let' constant to make 'Sendable' shared state immutable
public static var logProvider: LogProvider = {
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:32:23: note: add '@MainActor' to make static property 'logProvider' part of global actor 'MainActor'
public static var logProvider: LogProvider = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:32:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var logProvider: LogProvider = {
^
nonisolated(unsafe)
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ Occurrence (in target 'Occurrence' from project 'Occurrence')
EmitSwiftModule normal arm64_32 (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:8:16: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var `default`: LogModel = .version_1_0_0
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:8:16: note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
static var `default`: LogModel = .version_1_0_0
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:8:16: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
static var `default`: LogModel = .version_1_0_0
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:8:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var `default`: LogModel = .version_1_0_0
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:20:16: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'Version_1_0_0' may have shared mutable state; this is an error in the Swift 6 language mode
static let instance: Version_1_0_0 = Version_1_0_0()
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:17:7: note: class 'Version_1_0_0' does not conform to the 'Sendable' protocol
class Version_1_0_0: NSManagedObjectModel, NSSecureCoding {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:20:16: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
static let instance: Version_1_0_0 = Version_1_0_0()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:20:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let instance: Version_1_0_0 = Version_1_0_0()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/DecodingError+Occurrence.swift:4:1: warning: extension declares a conformance of imported type 'DecodingError' to imported protocol 'CustomNSError'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension DecodingError: CustomNSError, LoggableError {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/DecodingError+Occurrence.swift:4:1: note: add '@retroactive' to silence this warning
extension DecodingError: CustomNSError, LoggableError {
^ ~~~~~~~~~~~~~
@retroactive CustomNSError
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/EncodingError+Occurrence.swift:4:1: warning: extension declares a conformance of imported type 'EncodingError' to imported protocol 'CustomNSError'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension EncodingError: CustomNSError, LoggableError {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/EncodingError+Occurrence.swift:4:1: note: add '@retroactive' to silence this warning
extension EncodingError: CustomNSError, LoggableError {
^ ~~~~~~~~~~~~~
@retroactive CustomNSError
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Entry.swift:7:27: warning: static property 'gmtDateFormatter' 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 gmtDateFormatter: DateFormatter = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Entry.swift:7:27: note: convert 'gmtDateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
public static var gmtDateFormatter: DateFormatter = {
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Entry.swift:7:27: note: add '@MainActor' to make static property 'gmtDateFormatter' part of global actor 'MainActor'
public static var gmtDateFormatter: DateFormatter = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Entry.swift:7:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var gmtDateFormatter: DateFormatter = {
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Subsystem.swift:53:16: warning: static property 'occurrence' is not concurrency-safe because non-'Sendable' type 'Logger.Subsystem' may have shared mutable state; this is an error in the Swift 6 language mode
static let occurrence: Self = "com.richardpiazza.occurrence"
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Subsystem.swift:14:12: note: consider making struct 'Subsystem' conform to the 'Sendable' protocol
struct Subsystem: ExpressibleByStringLiteral, Codable, Hashable, Comparable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Subsystem.swift:53:16: note: add '@MainActor' to make static property 'occurrence' part of global actor 'MainActor'
static let occurrence: Self = "com.richardpiazza.occurrence"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Subsystem.swift:53:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let occurrence: Self = "com.richardpiazza.occurrence"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.Level+Occurrence.swift:25:1: warning: extension declares a conformance of imported type 'Level' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Logging' introduce this conformance in the future
extension Logger.Level: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.Level+Occurrence.swift:25:1: note: add '@retroactive' to silence this warning
extension Logger.Level: CustomStringConvertible {
^ ~~~~~~~~~~~~~~~~~~~~~~~
@retroactive CustomStringConvertible
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:11:23: warning: static property 'configuration' 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 configuration: Configuration = .init()
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:11:23: note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
public static var configuration: Configuration = .init()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:11:23: note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
public static var configuration: Configuration = .init()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:11:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var configuration: Configuration = .init()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:12:24: warning: static property 'bootstrapped' 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 bootstrapped: Bool = false
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:12:24: note: convert 'bootstrapped' to a 'let' constant to make 'Sendable' shared state immutable
private static var bootstrapped: Bool = false
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:12:24: note: add '@MainActor' to make static property 'bootstrapped' part of global actor 'MainActor'
private static var bootstrapped: Bool = false
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:12:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var bootstrapped: Bool = false
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:30:23: warning: static property 'logStreamer' is not concurrency-safe because non-'Sendable' type 'any LogStreamer' may have shared mutable state; this is an error in the Swift 6 language mode
public static let logStreamer: LogStreamer = OccurrenceLogStreamer()
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/LogStreamer.swift:7:17: note: protocol 'LogStreamer' does not conform to the 'Sendable' protocol
public protocol LogStreamer {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:30:23: note: add '@MainActor' to make static property 'logStreamer' part of global actor 'MainActor'
public static let logStreamer: LogStreamer = OccurrenceLogStreamer()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:30:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let logStreamer: LogStreamer = OccurrenceLogStreamer()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:32:23: warning: static property 'logProvider' 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 logProvider: LogProvider = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:32:23: note: convert 'logProvider' to a 'let' constant to make 'Sendable' shared state immutable
public static var logProvider: LogProvider = {
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:32:23: note: add '@MainActor' to make static property 'logProvider' part of global actor 'MainActor'
public static var logProvider: LogProvider = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:32:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var logProvider: LogProvider = {
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry.swift:38:16: warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var instance: SQLiteEntry = { SQLiteEntry() }()
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry.swift:38:16: note: convert 'instance' to a 'let' constant to make 'Sendable' shared state immutable
static var instance: SQLiteEntry = { SQLiteEntry() }()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry.swift:38:16: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
static var instance: SQLiteEntry = { SQLiteEntry() }()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry.swift:38:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var instance: SQLiteEntry = { SQLiteEntry() }()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:336:16: warning: static property 'sub1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var sub1: Logger.Subsystem = "package.diagnostics"
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:336:16: note: convert 'sub1' to a 'let' constant to make 'Sendable' shared state immutable
static var sub1: Logger.Subsystem = "package.diagnostics"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:336:16: note: add '@MainActor' to make static property 'sub1' part of global actor 'MainActor'
static var sub1: Logger.Subsystem = "package.diagnostics"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:336:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var sub1: Logger.Subsystem = "package.diagnostics"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:337:16: warning: static property 'sub2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var sub2: Logger.Subsystem = "app.iOS"
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:337:16: note: convert 'sub2' to a 'let' constant to make 'Sendable' shared state immutable
static var sub2: Logger.Subsystem = "app.iOS"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:337:16: note: add '@MainActor' to make static property 'sub2' part of global actor 'MainActor'
static var sub2: Logger.Subsystem = "app.iOS"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:337:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var sub2: Logger.Subsystem = "app.iOS"
^
nonisolated(unsafe)
SwiftEmitModule normal arm64 Emitting\ module\ for\ Occurrence (in target 'Occurrence' from project 'Occurrence')
EmitSwiftModule normal arm64 (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:8:16: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var `default`: LogModel = .version_1_0_0
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:8:16: note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
static var `default`: LogModel = .version_1_0_0
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:8:16: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
static var `default`: LogModel = .version_1_0_0
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:8:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var `default`: LogModel = .version_1_0_0
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:20:16: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'Version_1_0_0' may have shared mutable state; this is an error in the Swift 6 language mode
static let instance: Version_1_0_0 = Version_1_0_0()
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:17:7: note: class 'Version_1_0_0' does not conform to the 'Sendable' protocol
class Version_1_0_0: NSManagedObjectModel, NSSecureCoding {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:20:16: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
static let instance: Version_1_0_0 = Version_1_0_0()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:20:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let instance: Version_1_0_0 = Version_1_0_0()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/DecodingError+Occurrence.swift:4:1: warning: extension declares a conformance of imported type 'DecodingError' to imported protocol 'CustomNSError'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension DecodingError: CustomNSError, LoggableError {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/DecodingError+Occurrence.swift:4:1: note: add '@retroactive' to silence this warning
extension DecodingError: CustomNSError, LoggableError {
^ ~~~~~~~~~~~~~
@retroactive CustomNSError
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/EncodingError+Occurrence.swift:4:1: warning: extension declares a conformance of imported type 'EncodingError' to imported protocol 'CustomNSError'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension EncodingError: CustomNSError, LoggableError {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/EncodingError+Occurrence.swift:4:1: note: add '@retroactive' to silence this warning
extension EncodingError: CustomNSError, LoggableError {
^ ~~~~~~~~~~~~~
@retroactive CustomNSError
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Entry.swift:7:27: warning: static property 'gmtDateFormatter' 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 gmtDateFormatter: DateFormatter = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Entry.swift:7:27: note: convert 'gmtDateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
public static var gmtDateFormatter: DateFormatter = {
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Entry.swift:7:27: note: add '@MainActor' to make static property 'gmtDateFormatter' part of global actor 'MainActor'
public static var gmtDateFormatter: DateFormatter = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Entry.swift:7:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var gmtDateFormatter: DateFormatter = {
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Subsystem.swift:53:16: warning: static property 'occurrence' is not concurrency-safe because non-'Sendable' type 'Logger.Subsystem' may have shared mutable state; this is an error in the Swift 6 language mode
static let occurrence: Self = "com.richardpiazza.occurrence"
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Subsystem.swift:14:12: note: consider making struct 'Subsystem' conform to the 'Sendable' protocol
struct Subsystem: ExpressibleByStringLiteral, Codable, Hashable, Comparable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Subsystem.swift:53:16: note: add '@MainActor' to make static property 'occurrence' part of global actor 'MainActor'
static let occurrence: Self = "com.richardpiazza.occurrence"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Subsystem.swift:53:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let occurrence: Self = "com.richardpiazza.occurrence"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.Level+Occurrence.swift:25:1: warning: extension declares a conformance of imported type 'Level' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Logging' introduce this conformance in the future
extension Logger.Level: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.Level+Occurrence.swift:25:1: note: add '@retroactive' to silence this warning
extension Logger.Level: CustomStringConvertible {
^ ~~~~~~~~~~~~~~~~~~~~~~~
@retroactive CustomStringConvertible
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:11:23: warning: static property 'configuration' 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 configuration: Configuration = .init()
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:11:23: note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
public static var configuration: Configuration = .init()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:11:23: note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
public static var configuration: Configuration = .init()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:11:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var configuration: Configuration = .init()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:12:24: warning: static property 'bootstrapped' 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 bootstrapped: Bool = false
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:12:24: note: convert 'bootstrapped' to a 'let' constant to make 'Sendable' shared state immutable
private static var bootstrapped: Bool = false
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:12:24: note: add '@MainActor' to make static property 'bootstrapped' part of global actor 'MainActor'
private static var bootstrapped: Bool = false
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:12:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var bootstrapped: Bool = false
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:30:23: warning: static property 'logStreamer' is not concurrency-safe because non-'Sendable' type 'any LogStreamer' may have shared mutable state; this is an error in the Swift 6 language mode
public static let logStreamer: LogStreamer = OccurrenceLogStreamer()
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/LogStreamer.swift:7:17: note: protocol 'LogStreamer' does not conform to the 'Sendable' protocol
public protocol LogStreamer {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:30:23: note: add '@MainActor' to make static property 'logStreamer' part of global actor 'MainActor'
public static let logStreamer: LogStreamer = OccurrenceLogStreamer()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:30:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let logStreamer: LogStreamer = OccurrenceLogStreamer()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:32:23: warning: static property 'logProvider' 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 logProvider: LogProvider = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:32:23: note: convert 'logProvider' to a 'let' constant to make 'Sendable' shared state immutable
public static var logProvider: LogProvider = {
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:32:23: note: add '@MainActor' to make static property 'logProvider' part of global actor 'MainActor'
public static var logProvider: LogProvider = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:32:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var logProvider: LogProvider = {
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry.swift:38:16: warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var instance: SQLiteEntry = { SQLiteEntry() }()
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry.swift:38:16: note: convert 'instance' to a 'let' constant to make 'Sendable' shared state immutable
static var instance: SQLiteEntry = { SQLiteEntry() }()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry.swift:38:16: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
static var instance: SQLiteEntry = { SQLiteEntry() }()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry.swift:38:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var instance: SQLiteEntry = { SQLiteEntry() }()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:336:16: warning: static property 'sub1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var sub1: Logger.Subsystem = "package.diagnostics"
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:336:16: note: convert 'sub1' to a 'let' constant to make 'Sendable' shared state immutable
static var sub1: Logger.Subsystem = "package.diagnostics"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:336:16: note: add '@MainActor' to make static property 'sub1' part of global actor 'MainActor'
static var sub1: Logger.Subsystem = "package.diagnostics"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:336:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var sub1: Logger.Subsystem = "package.diagnostics"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:337:16: warning: static property 'sub2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var sub2: Logger.Subsystem = "app.iOS"
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:337:16: note: convert 'sub2' to a 'let' constant to make 'Sendable' shared state immutable
static var sub2: Logger.Subsystem = "app.iOS"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:337:16: note: add '@MainActor' to make static property 'sub2' part of global actor 'MainActor'
static var sub2: Logger.Subsystem = "app.iOS"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:337:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var sub2: Logger.Subsystem = "app.iOS"
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 Compiling\ URLError+Occurrence.swift,\ LazyLogger.swift,\ LogProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/URLError+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/LazyLogger.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/LogProvider.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/URLError+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/LazyLogger.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/LogProvider.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Statement.build/Debug-watchos/StatementSQLite.build/Objects-normal/armv7k/Binary/StatementSQLite.o normal armv7k (in target 'StatementSQLite' from project 'Statement')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Statement
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Statement.build/Debug-watchos/StatementSQLite.build/Objects-normal/armv7k/StatementSQLite.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Statement.build/Debug-watchos/StatementSQLite.build/Objects-normal/armv7k/StatementSQLite_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Statement.build/Debug-watchos/StatementSQLite.build/Objects-normal/armv7k/StatementSQLite_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Statement.build/Debug-watchos/StatementSQLite.build/Objects-normal/armv7k/StatementSQLite.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Statement.build/Debug-watchos/StatementSQLite.build/Objects-normal/armv7k/Binary/StatementSQLite.o
SwiftDriverJobDiscovery normal armv7k Compiling URLError+Occurrence.swift, LazyLogger.swift, LogProvider.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64_32 Compiling\ Array+Occurrence.swift,\ CocoaError+Occurrence.swift,\ DecodingError+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Array+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/CocoaError+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/DecodingError+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Array+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/CocoaError+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/DecodingError+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/DecodingError+Occurrence.swift:4:1: warning: extension declares a conformance of imported type 'DecodingError' to imported protocol 'CustomNSError'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension DecodingError: CustomNSError, LoggableError {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/DecodingError+Occurrence.swift:4:1: note: add '@retroactive' to silence this warning
extension DecodingError: CustomNSError, LoggableError {
^ ~~~~~~~~~~~~~
@retroactive CustomNSError
SwiftDriverJobDiscovery normal arm64_32 Emitting module for Occurrence (in target 'Occurrence' from project 'Occurrence')
SwiftDriver\ Compilation\ Requirements Occurrence normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Occurrence -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64_32/Occurrence.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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-watchos8.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/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -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/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64_32/Occurrence-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/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64_32/Occurrence.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/Occurrence.build/Debug-watchos/Occurrence.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64_32/Occurrence_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/Occurrence.build/Debug-watchos/Occurrence.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.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/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64_32/Occurrence-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64_32 Compiling URLError+Occurrence.swift, LazyLogger.swift, LogProvider.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64 Compiling\ URLError+Occurrence.swift,\ LazyLogger.swift,\ LogProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/URLError+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/LazyLogger.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/LogProvider.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/URLError+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/LazyLogger.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/LogProvider.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Occurrence.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64_32/Occurrence.swiftmodule (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64_32/Occurrence.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Occurrence.swiftmodule/arm64_32-apple-watchos.swiftmodule
SwiftDriverJobDiscovery normal armv7k Compiling Logger+Subsystem.swift, Logger.Level+Occurrence.swift, Logger.Message+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Occurrence.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64_32/Occurrence.swiftdoc (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64_32/Occurrence.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Occurrence.swiftmodule/arm64_32-apple-watchos.swiftdoc
SwiftDriverJobDiscovery normal arm64 Emitting module for Occurrence (in target 'Occurrence' from project 'Occurrence')
SwiftDriver\ Compilation\ Requirements Occurrence normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Occurrence -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64/Occurrence.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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-watchos8.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/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -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/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64/Occurrence-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/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64/Occurrence.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/Occurrence.build/Debug-watchos/Occurrence.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64/Occurrence_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/Occurrence.build/Debug-watchos/Occurrence.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.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/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64/Occurrence-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Occurrence.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64_32/Occurrence.abi.json (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64_32/Occurrence.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Occurrence.swiftmodule/arm64_32-apple-watchos.abi.json
SwiftCompile normal arm64 Compiling\ Logger+Subsystem.swift,\ Logger.Level+Occurrence.swift,\ Logger.Message+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Subsystem.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.Level+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.Message+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Subsystem.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Subsystem.swift:53:16: warning: static property 'occurrence' is not concurrency-safe because non-'Sendable' type 'Logger.Subsystem' may have shared mutable state; this is an error in the Swift 6 language mode
static let occurrence: Self = "com.richardpiazza.occurrence"
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Subsystem.swift:14:12: note: consider making struct 'Subsystem' conform to the 'Sendable' protocol
struct Subsystem: ExpressibleByStringLiteral, Codable, Hashable, Comparable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Subsystem.swift:53:16: note: add '@MainActor' to make static property 'occurrence' part of global actor 'MainActor'
static let occurrence: Self = "com.richardpiazza.occurrence"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Subsystem.swift:53:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let occurrence: Self = "com.richardpiazza.occurrence"
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.Level+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.Level+Occurrence.swift:25:1: warning: extension declares a conformance of imported type 'Level' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Logging' introduce this conformance in the future
extension Logger.Level: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.Level+Occurrence.swift:25:1: note: add '@retroactive' to silence this warning
extension Logger.Level: CustomStringConvertible {
^ ~~~~~~~~~~~~~~~~~~~~~~~
@retroactive CustomStringConvertible
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.Message+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Occurrence.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64_32/Occurrence.swiftsourceinfo (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64_32/Occurrence.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Occurrence.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
SwiftDriverJobDiscovery normal armv7k Compiling Dictionary+Occurrence.swift, EncodingError+Occurrence.swift, FileManager+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64_32 Compiling\ Logger.Filter+Where.swift,\ SQLiteEntry+Mapping.swift,\ SQLiteEntry.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/Logger.Filter+Where.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry+Mapping.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/Logger.Filter+Where.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry+Mapping.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry.swift:38:16: warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var instance: SQLiteEntry = { SQLiteEntry() }()
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry.swift:38:16: note: convert 'instance' to a 'let' constant to make 'Sendable' shared state immutable
static var instance: SQLiteEntry = { SQLiteEntry() }()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry.swift:38:16: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
static var instance: SQLiteEntry = { SQLiteEntry() }()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry.swift:38:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var instance: SQLiteEntry = { SQLiteEntry() }()
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 Compiling\ Logger+Subsystem.swift,\ Logger.Level+Occurrence.swift,\ Logger.Message+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Subsystem.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.Level+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.Message+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Subsystem.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Subsystem.swift:53:16: warning: static property 'occurrence' is not concurrency-safe because non-'Sendable' type 'Logger.Subsystem' may have shared mutable state; this is an error in the Swift 6 language mode
static let occurrence: Self = "com.richardpiazza.occurrence"
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Subsystem.swift:14:12: note: consider making struct 'Subsystem' conform to the 'Sendable' protocol
struct Subsystem: ExpressibleByStringLiteral, Codable, Hashable, Comparable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Subsystem.swift:53:16: note: add '@MainActor' to make static property 'occurrence' part of global actor 'MainActor'
static let occurrence: Self = "com.richardpiazza.occurrence"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Subsystem.swift:53:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let occurrence: Self = "com.richardpiazza.occurrence"
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.Level+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.Level+Occurrence.swift:25:1: warning: extension declares a conformance of imported type 'Level' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Logging' introduce this conformance in the future
extension Logger.Level: CustomStringConvertible {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.Level+Occurrence.swift:25:1: note: add '@retroactive' to silence this warning
extension Logger.Level: CustomStringConvertible {
^ ~~~~~~~~~~~~~~~~~~~~~~~
@retroactive CustomStringConvertible
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.Message+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Occurrence.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64/Occurrence.swiftmodule (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64/Occurrence.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Occurrence.swiftmodule/arm64-apple-watchos.swiftmodule
SwiftDriverJobDiscovery normal armv7k Compiling LogStreamer.swift, LoggableError.swift, Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Occurrence.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64/Occurrence.swiftdoc (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64/Occurrence.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Occurrence.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Occurrence.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64/Occurrence.abi.json (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64/Occurrence.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Occurrence.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Occurrence.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64/Occurrence.swiftsourceinfo (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64/Occurrence.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Occurrence.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftCompile normal arm64_32 Compiling\ Dictionary+Occurrence.swift,\ EncodingError+Occurrence.swift,\ FileManager+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Dictionary+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/EncodingError+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/FileManager+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Dictionary+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/EncodingError+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/EncodingError+Occurrence.swift:4:1: warning: extension declares a conformance of imported type 'EncodingError' to imported protocol 'CustomNSError'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension EncodingError: CustomNSError, LoggableError {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/EncodingError+Occurrence.swift:4:1: note: add '@retroactive' to silence this warning
extension EncodingError: CustomNSError, LoggableError {
^ ~~~~~~~~~~~~~
@retroactive CustomNSError
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/FileManager+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Emitting module for Occurrence (in target 'Occurrence' from project 'Occurrence')
SwiftDriver\ Compilation\ Requirements Occurrence normal armv7k com.apple.xcode.tools.swift.compiler (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Occurrence -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/armv7k/Occurrence.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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-watchos8.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/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -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/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/armv7k/Occurrence-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/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/armv7k/Occurrence.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/Occurrence.build/Debug-watchos/Occurrence.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/armv7k/Occurrence_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/Occurrence.build/Debug-watchos/Occurrence.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.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/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/armv7k/Occurrence-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64_32 Compiling\ CoreDataLogProvider.swift,\ LogModel.swift,\ Logger.Filter+Predicate.swift,\ ManagedEntry.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/CoreDataLogProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/Logger.Filter+Predicate.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/ManagedEntry.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/CoreDataLogProvider.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:8:16: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var `default`: LogModel = .version_1_0_0
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:8:16: note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
static var `default`: LogModel = .version_1_0_0
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:8:16: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
static var `default`: LogModel = .version_1_0_0
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:8:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var `default`: LogModel = .version_1_0_0
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:20:16: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'Version_1_0_0' may have shared mutable state; this is an error in the Swift 6 language mode
static let instance: Version_1_0_0 = Version_1_0_0()
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:17:7: note: class 'Version_1_0_0' does not conform to the 'Sendable' protocol
class Version_1_0_0: NSManagedObjectModel, NSSecureCoding {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:20:16: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
static let instance: Version_1_0_0 = Version_1_0_0()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:20:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let instance: Version_1_0_0 = Version_1_0_0()
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/Logger.Filter+Predicate.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/ManagedEntry.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/StatementSQLite.o normal arm64\ armv7k\ arm64_32 (in target 'StatementSQLite' from project 'Statement')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Statement
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Statement.build/Debug-watchos/StatementSQLite.build/Objects-normal/arm64/Binary/StatementSQLite.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Statement.build/Debug-watchos/StatementSQLite.build/Objects-normal/armv7k/Binary/StatementSQLite.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Statement.build/Debug-watchos/StatementSQLite.build/Objects-normal/arm64_32/Binary/StatementSQLite.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/StatementSQLite.o
SwiftCompile normal armv7k Compiling\ Logger.Filter+Where.swift,\ SQLiteEntry+Mapping.swift,\ SQLiteEntry.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/Logger.Filter+Where.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry+Mapping.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/Logger.Filter+Where.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry+Mapping.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry.swift:38:16: warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var instance: SQLiteEntry = { SQLiteEntry() }()
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry.swift:38:16: note: convert 'instance' to a 'let' constant to make 'Sendable' shared state immutable
static var instance: SQLiteEntry = { SQLiteEntry() }()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry.swift:38:16: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
static var instance: SQLiteEntry = { SQLiteEntry() }()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry.swift:38:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var instance: SQLiteEntry = { SQLiteEntry() }()
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling Array+Occurrence.swift, CocoaError+Occurrence.swift, DecodingError+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/Occurrence-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64/Occurrence-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64_32/Occurrence-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/armv7k/Occurrence-Swift.h (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64/Occurrence-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64_32/Occurrence-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/armv7k/Occurrence-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/Occurrence-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Occurrence.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/armv7k/Occurrence.swiftmodule (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/armv7k/Occurrence.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Occurrence.swiftmodule/armv7k-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Occurrence.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/armv7k/Occurrence.swiftdoc (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/armv7k/Occurrence.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Occurrence.swiftmodule/armv7k-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Occurrence.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/armv7k/Occurrence.abi.json (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/armv7k/Occurrence.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Occurrence.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Occurrence.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/armv7k/Occurrence.swiftsourceinfo (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/armv7k/Occurrence.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Occurrence.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
SwiftCompile normal armv7k Compiling\ SQLiteLogProvider.swift,\ OccurrenceLogStreamer.swift,\ LogView.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteLogProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Streamer/OccurrenceLogStreamer.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteLogProvider.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Streamer/OccurrenceLogStreamer.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Streamer/OccurrenceLogStreamer.swift:36:23: warning: sending 'entry' risks causing data races; this is an error in the Swift 6 language mode
continuation?.yield(entry)
~~~~~~~~~~~~~~^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Streamer/OccurrenceLogStreamer.swift:36:23: note: task-isolated 'entry' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
continuation?.yield(entry)
^
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:336:16: warning: static property 'sub1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var sub1: Logger.Subsystem = "package.diagnostics"
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:336:16: note: convert 'sub1' to a 'let' constant to make 'Sendable' shared state immutable
static var sub1: Logger.Subsystem = "package.diagnostics"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:336:16: note: add '@MainActor' to make static property 'sub1' part of global actor 'MainActor'
static var sub1: Logger.Subsystem = "package.diagnostics"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:336:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var sub1: Logger.Subsystem = "package.diagnostics"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:337:16: warning: static property 'sub2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var sub2: Logger.Subsystem = "app.iOS"
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:337:16: note: convert 'sub2' to a 'let' constant to make 'Sendable' shared state immutable
static var sub2: Logger.Subsystem = "app.iOS"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:337:16: note: add '@MainActor' to make static property 'sub2' part of global actor 'MainActor'
static var sub2: Logger.Subsystem = "app.iOS"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:337:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var sub2: Logger.Subsystem = "app.iOS"
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Dictionary+Occurrence.swift,\ EncodingError+Occurrence.swift,\ FileManager+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Dictionary+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/EncodingError+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/FileManager+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Dictionary+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/EncodingError+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/EncodingError+Occurrence.swift:4:1: warning: extension declares a conformance of imported type 'EncodingError' to imported protocol 'CustomNSError'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension EncodingError: CustomNSError, LoggableError {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/EncodingError+Occurrence.swift:4:1: note: add '@retroactive' to silence this warning
extension EncodingError: CustomNSError, LoggableError {
^ ~~~~~~~~~~~~~
@retroactive CustomNSError
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/FileManager+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Compiling Logger+Entry.swift, Logger+Filter.swift, Logger+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64 Compiling\ LogStreamer.swift,\ LoggableError.swift,\ Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/LogStreamer.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/LoggableError.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/LogStreamer.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/LoggableError.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:11:23: warning: static property 'configuration' 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 configuration: Configuration = .init()
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:11:23: note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
public static var configuration: Configuration = .init()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:11:23: note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
public static var configuration: Configuration = .init()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:11:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var configuration: Configuration = .init()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:12:24: warning: static property 'bootstrapped' 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 bootstrapped: Bool = false
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:12:24: note: convert 'bootstrapped' to a 'let' constant to make 'Sendable' shared state immutable
private static var bootstrapped: Bool = false
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:12:24: note: add '@MainActor' to make static property 'bootstrapped' part of global actor 'MainActor'
private static var bootstrapped: Bool = false
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:12:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var bootstrapped: Bool = false
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:30:23: warning: static property 'logStreamer' is not concurrency-safe because non-'Sendable' type 'any LogStreamer' may have shared mutable state; this is an error in the Swift 6 language mode
public static let logStreamer: LogStreamer = OccurrenceLogStreamer()
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/LogStreamer.swift:7:17: note: protocol 'LogStreamer' does not conform to the 'Sendable' protocol
public protocol LogStreamer {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:30:23: note: add '@MainActor' to make static property 'logStreamer' part of global actor 'MainActor'
public static let logStreamer: LogStreamer = OccurrenceLogStreamer()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:30:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let logStreamer: LogStreamer = OccurrenceLogStreamer()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:32:23: warning: static property 'logProvider' 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 logProvider: LogProvider = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:32:23: note: convert 'logProvider' to a 'let' constant to make 'Sendable' shared state immutable
public static var logProvider: LogProvider = {
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:32:23: note: add '@MainActor' to make static property 'logProvider' part of global actor 'MainActor'
public static var logProvider: LogProvider = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:32:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var logProvider: LogProvider = {
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Compiling Array+Occurrence.swift, CocoaError+Occurrence.swift, DecodingError+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64 Compiling\ Logger.Filter+Where.swift,\ SQLiteEntry+Mapping.swift,\ SQLiteEntry.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/Logger.Filter+Where.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry+Mapping.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/Logger.Filter+Where.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry+Mapping.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry.swift:38:16: warning: static property 'instance' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var instance: SQLiteEntry = { SQLiteEntry() }()
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry.swift:38:16: note: convert 'instance' to a 'let' constant to make 'Sendable' shared state immutable
static var instance: SQLiteEntry = { SQLiteEntry() }()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry.swift:38:16: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
static var instance: SQLiteEntry = { SQLiteEntry() }()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteEntry.swift:38:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var instance: SQLiteEntry = { SQLiteEntry() }()
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Compiling Logger+Subsystem.swift, Logger.Level+Occurrence.swift, Logger.Message+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64 Compiling\ Logger.Metadata+Occurrence.swift,\ Logger.MetadataKey.swift,\ Logger.MetadataValue+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.Metadata+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.MetadataKey.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.MetadataValue+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.Metadata+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.MetadataKey.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.MetadataValue+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling Dictionary+Occurrence.swift, EncodingError+Occurrence.swift, FileManager+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64 Compiling\ CoreDataLogProvider.swift,\ LogModel.swift,\ Logger.Filter+Predicate.swift,\ ManagedEntry.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/CoreDataLogProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/Logger.Filter+Predicate.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/ManagedEntry.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/CoreDataLogProvider.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:8:16: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var `default`: LogModel = .version_1_0_0
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:8:16: note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
static var `default`: LogModel = .version_1_0_0
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:8:16: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
static var `default`: LogModel = .version_1_0_0
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:8:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var `default`: LogModel = .version_1_0_0
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:20:16: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'Version_1_0_0' may have shared mutable state; this is an error in the Swift 6 language mode
static let instance: Version_1_0_0 = Version_1_0_0()
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:17:7: note: class 'Version_1_0_0' does not conform to the 'Sendable' protocol
class Version_1_0_0: NSManagedObjectModel, NSSecureCoding {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:20:16: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
static let instance: Version_1_0_0 = Version_1_0_0()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:20:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let instance: Version_1_0_0 = Version_1_0_0()
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/Logger.Filter+Predicate.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/ManagedEntry.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling URLError+Occurrence.swift, LazyLogger.swift, LogProvider.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64_32 Compiling\ Logger.Metadata+Occurrence.swift,\ Logger.MetadataKey.swift,\ Logger.MetadataValue+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.Metadata+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.MetadataKey.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.MetadataValue+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.Metadata+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.MetadataKey.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.MetadataValue+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling Dictionary+Occurrence.swift, EncodingError+Occurrence.swift, FileManager+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64 Compiling\ Logger+Entry.swift,\ Logger+Filter.swift,\ Logger+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Entry.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Filter.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Entry.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Entry.swift:7:27: warning: static property 'gmtDateFormatter' 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 gmtDateFormatter: DateFormatter = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Entry.swift:7:27: note: convert 'gmtDateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
public static var gmtDateFormatter: DateFormatter = {
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Entry.swift:7:27: note: add '@MainActor' to make static property 'gmtDateFormatter' part of global actor 'MainActor'
public static var gmtDateFormatter: DateFormatter = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Entry.swift:7:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var gmtDateFormatter: DateFormatter = {
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Filter.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling Logger+Subsystem.swift, Logger.Level+Occurrence.swift, Logger.Message+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64_32 Compiling\ Logger+Entry.swift,\ Logger+Filter.swift,\ Logger+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Entry.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Filter.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Entry.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Entry.swift:7:27: warning: static property 'gmtDateFormatter' 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 gmtDateFormatter: DateFormatter = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Entry.swift:7:27: note: convert 'gmtDateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
public static var gmtDateFormatter: DateFormatter = {
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Entry.swift:7:27: note: add '@MainActor' to make static property 'gmtDateFormatter' part of global actor 'MainActor'
public static var gmtDateFormatter: DateFormatter = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Entry.swift:7:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var gmtDateFormatter: DateFormatter = {
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Filter.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Compiling Logger.Filter+Where.swift, SQLiteEntry+Mapping.swift, SQLiteEntry.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64 Compiling\ Array+Occurrence.swift,\ CocoaError+Occurrence.swift,\ DecodingError+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Array+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/CocoaError+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/DecodingError+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Array+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/CocoaError+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/DecodingError+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/DecodingError+Occurrence.swift:4:1: warning: extension declares a conformance of imported type 'DecodingError' to imported protocol 'CustomNSError'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
extension DecodingError: CustomNSError, LoggableError {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/DecodingError+Occurrence.swift:4:1: note: add '@retroactive' to silence this warning
extension DecodingError: CustomNSError, LoggableError {
^ ~~~~~~~~~~~~~
@retroactive CustomNSError
SwiftDriverJobDiscovery normal arm64_32 Compiling Logger.Filter+Where.swift, SQLiteEntry+Mapping.swift, SQLiteEntry.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64 Compiling\ SQLiteLogProvider.swift,\ OccurrenceLogStreamer.swift,\ LogView.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteLogProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Streamer/OccurrenceLogStreamer.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteLogProvider.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Streamer/OccurrenceLogStreamer.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Streamer/OccurrenceLogStreamer.swift:36:23: warning: sending 'entry' risks causing data races; this is an error in the Swift 6 language mode
continuation?.yield(entry)
~~~~~~~~~~~~~~^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Streamer/OccurrenceLogStreamer.swift:36:23: note: task-isolated 'entry' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
continuation?.yield(entry)
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:336:16: warning: static property 'sub1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var sub1: Logger.Subsystem = "package.diagnostics"
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:336:16: note: convert 'sub1' to a 'let' constant to make 'Sendable' shared state immutable
static var sub1: Logger.Subsystem = "package.diagnostics"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:336:16: note: add '@MainActor' to make static property 'sub1' part of global actor 'MainActor'
static var sub1: Logger.Subsystem = "package.diagnostics"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:336:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var sub1: Logger.Subsystem = "package.diagnostics"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:337:16: warning: static property 'sub2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var sub2: Logger.Subsystem = "app.iOS"
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:337:16: note: convert 'sub2' to a 'let' constant to make 'Sendable' shared state immutable
static var sub2: Logger.Subsystem = "app.iOS"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:337:16: note: add '@MainActor' to make static property 'sub2' part of global actor 'MainActor'
static var sub2: Logger.Subsystem = "app.iOS"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:337:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var sub2: Logger.Subsystem = "app.iOS"
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling LogStreamer.swift, LoggableError.swift, Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal armv7k Compiling\ CoreDataLogProvider.swift,\ LogModel.swift,\ Logger.Filter+Predicate.swift,\ ManagedEntry.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/CoreDataLogProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/Logger.Filter+Predicate.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/ManagedEntry.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/CoreDataLogProvider.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:8:16: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var `default`: LogModel = .version_1_0_0
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:8:16: note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
static var `default`: LogModel = .version_1_0_0
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:8:16: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
static var `default`: LogModel = .version_1_0_0
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:8:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var `default`: LogModel = .version_1_0_0
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:20:16: warning: static property 'instance' is not concurrency-safe because non-'Sendable' type 'Version_1_0_0' may have shared mutable state; this is an error in the Swift 6 language mode
static let instance: Version_1_0_0 = Version_1_0_0()
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:17:7: note: class 'Version_1_0_0' does not conform to the 'Sendable' protocol
class Version_1_0_0: NSManagedObjectModel, NSSecureCoding {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:20:16: note: add '@MainActor' to make static property 'instance' part of global actor 'MainActor'
static let instance: Version_1_0_0 = Version_1_0_0()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/LogModel.swift:20:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let instance: Version_1_0_0 = Version_1_0_0()
^
nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/Logger.Filter+Predicate.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/CoreData/ManagedEntry.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling Logger.Metadata+Occurrence.swift, Logger.MetadataKey.swift, Logger.MetadataValue+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal armv7k Compiling\ Logger.Metadata+Occurrence.swift,\ Logger.MetadataKey.swift,\ Logger.MetadataValue+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.Metadata+Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.MetadataKey.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.MetadataValue+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.Metadata+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.MetadataKey.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Extensions/Logger.MetadataValue+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling Logger.Metadata+Occurrence.swift, Logger.MetadataKey.swift, Logger.MetadataValue+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64_32 Compiling\ LogStreamer.swift,\ LoggableError.swift,\ Occurrence.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/LogStreamer.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/LoggableError.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/LogStreamer.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/LoggableError.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:11:23: warning: static property 'configuration' 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 configuration: Configuration = .init()
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:11:23: note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
public static var configuration: Configuration = .init()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:11:23: note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
public static var configuration: Configuration = .init()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:11:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var configuration: Configuration = .init()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:12:24: warning: static property 'bootstrapped' 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 bootstrapped: Bool = false
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:12:24: note: convert 'bootstrapped' to a 'let' constant to make 'Sendable' shared state immutable
private static var bootstrapped: Bool = false
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:12:24: note: add '@MainActor' to make static property 'bootstrapped' part of global actor 'MainActor'
private static var bootstrapped: Bool = false
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:12:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var bootstrapped: Bool = false
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:30:23: warning: static property 'logStreamer' is not concurrency-safe because non-'Sendable' type 'any LogStreamer' may have shared mutable state; this is an error in the Swift 6 language mode
public static let logStreamer: LogStreamer = OccurrenceLogStreamer()
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/LogStreamer.swift:7:17: note: protocol 'LogStreamer' does not conform to the 'Sendable' protocol
public protocol LogStreamer {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:30:23: note: add '@MainActor' to make static property 'logStreamer' part of global actor 'MainActor'
public static let logStreamer: LogStreamer = OccurrenceLogStreamer()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:30:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let logStreamer: LogStreamer = OccurrenceLogStreamer()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:32:23: warning: static property 'logProvider' 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 logProvider: LogProvider = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:32:23: note: convert 'logProvider' to a 'let' constant to make 'Sendable' shared state immutable
public static var logProvider: LogProvider = {
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:32:23: note: add '@MainActor' to make static property 'logProvider' part of global actor 'MainActor'
public static var logProvider: LogProvider = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Occurrence.swift:32:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var logProvider: LogProvider = {
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling Logger.Filter+Where.swift, SQLiteEntry+Mapping.swift, SQLiteEntry.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64_32 Compiling\ SQLiteLogProvider.swift,\ OccurrenceLogStreamer.swift,\ LogView.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteLogProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Streamer/OccurrenceLogStreamer.swift /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift (in target 'Occurrence' from project 'Occurrence')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SQLite/SQLiteLogProvider.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Streamer/OccurrenceLogStreamer.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Streamer/OccurrenceLogStreamer.swift:36:23: warning: sending 'entry' risks causing data races; this is an error in the Swift 6 language mode
continuation?.yield(entry)
~~~~~~~~~~~~~~^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/Streamer/OccurrenceLogStreamer.swift:36:23: note: task-isolated 'entry' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
continuation?.yield(entry)
^
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:336:16: warning: static property 'sub1' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var sub1: Logger.Subsystem = "package.diagnostics"
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:336:16: note: convert 'sub1' to a 'let' constant to make 'Sendable' shared state immutable
static var sub1: Logger.Subsystem = "package.diagnostics"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:336:16: note: add '@MainActor' to make static property 'sub1' part of global actor 'MainActor'
static var sub1: Logger.Subsystem = "package.diagnostics"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:336:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var sub1: Logger.Subsystem = "package.diagnostics"
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:337:16: warning: static property 'sub2' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var sub2: Logger.Subsystem = "app.iOS"
^
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:337:16: note: convert 'sub2' to a 'let' constant to make 'Sendable' shared state immutable
static var sub2: Logger.Subsystem = "app.iOS"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:337:16: note: add '@MainActor' to make static property 'sub2' part of global actor 'MainActor'
static var sub2: Logger.Subsystem = "app.iOS"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Occurrence/SwiftUI/LogView.swift:337:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var sub2: Logger.Subsystem = "app.iOS"
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling Array+Occurrence.swift, CocoaError+Occurrence.swift, DecodingError+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftDriverJobDiscovery normal arm64 Compiling Logger+Entry.swift, Logger+Filter.swift, Logger+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
ExtractAppIntentsMetadata (in target 'StatementSQLite' from project 'Statement')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Statement
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name StatementSQLite --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk --xcode-version 16E140 --platform-family watchOS --deployment-target 5.0 --bundle-identifier statement.StatementSQLite --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/StatementSQLite.appintents --target-triple arm64-apple-watchos5.0 --target-triple armv7k-apple-watchos5.0 --target-triple arm64_32-apple-watchos5.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/StatementSQLite.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Statement.build/Debug-watchos/StatementSQLite.build/Objects-normal/arm64/StatementSQLite_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Statement.build/Debug-watchos/StatementSQLite.build/Objects-normal/armv7k/StatementSQLite_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Statement.build/Debug-watchos/StatementSQLite.build/Objects-normal/arm64_32/StatementSQLite_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Statement.build/Debug-watchos/StatementSQLite.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Statement.build/Debug-watchos/StatementSQLite.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Statement.build/Debug-watchos/StatementSQLite.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Statement.build/Debug-watchos/StatementSQLite.build/Objects-normal/arm64/StatementSQLite.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Statement.build/Debug-watchos/StatementSQLite.build/Objects-normal/armv7k/StatementSQLite.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Statement.build/Debug-watchos/StatementSQLite.build/Objects-normal/arm64_32/StatementSQLite.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Statement.build/Debug-watchos/StatementSQLite.build/StatementSQLite.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Statement.build/Debug-watchos/StatementSQLite.build/StatementSQLite.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Statement.build/Debug-watchos/StatementSQLite.build/Objects-normal/arm64/StatementSQLite.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Statement.build/Debug-watchos/StatementSQLite.build/Objects-normal/armv7k/StatementSQLite.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Statement.build/Debug-watchos/StatementSQLite.build/Objects-normal/arm64_32/StatementSQLite.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-30 16:10:54.000 appintentsmetadataprocessor[1003:5898] Starting appintentsmetadataprocessor export
2025-04-30 16:10:54.061 appintentsmetadataprocessor[1003:5898] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal armv7k Compiling Logger.Metadata+Occurrence.swift, Logger.MetadataKey.swift, Logger.MetadataValue+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftDriverJobDiscovery normal arm64_32 Compiling CoreDataLogProvider.swift, LogModel.swift, Logger.Filter+Predicate.swift, ManagedEntry.swift (in target 'Occurrence' from project 'Occurrence')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/StatementSQLite.o (in target 'StatementSQLite' from project 'Statement')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Statement
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/StatementSQLite.o
SwiftDriverJobDiscovery normal arm64_32 Compiling Logger+Entry.swift, Logger+Filter.swift, Logger+Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftDriverJobDiscovery normal arm64_32 Compiling LogStreamer.swift, LoggableError.swift, Occurrence.swift (in target 'Occurrence' from project 'Occurrence')
SwiftDriverJobDiscovery normal arm64 Compiling CoreDataLogProvider.swift, LogModel.swift, Logger.Filter+Predicate.swift, ManagedEntry.swift (in target 'Occurrence' from project 'Occurrence')
SwiftDriverJobDiscovery normal armv7k Compiling CoreDataLogProvider.swift, LogModel.swift, Logger.Filter+Predicate.swift, ManagedEntry.swift (in target 'Occurrence' from project 'Occurrence')
SwiftDriverJobDiscovery normal armv7k Compiling SQLiteLogProvider.swift, OccurrenceLogStreamer.swift, LogView.swift (in target 'Occurrence' from project 'Occurrence')
SwiftDriver\ Compilation Occurrence normal armv7k com.apple.xcode.tools.swift.compiler (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Occurrence -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/armv7k/Occurrence.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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-watchos8.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/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -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/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/armv7k/Occurrence-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/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/armv7k/Occurrence.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/Occurrence.build/Debug-watchos/Occurrence.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/armv7k/Occurrence_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/Occurrence.build/Debug-watchos/Occurrence.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.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/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/armv7k/Occurrence-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/armv7k/Binary/Occurrence.o normal armv7k (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos8.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/armv7k/Occurrence.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/armv7k/Occurrence_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/armv7k/Occurrence_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/armv7k/Occurrence.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/armv7k/Binary/Occurrence.o
SwiftDriverJobDiscovery normal arm64 Compiling SQLiteLogProvider.swift, OccurrenceLogStreamer.swift, LogView.swift (in target 'Occurrence' from project 'Occurrence')
SwiftDriver\ Compilation Occurrence normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Occurrence -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64/Occurrence.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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-watchos8.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/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -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/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64/Occurrence-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/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64/Occurrence.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/Occurrence.build/Debug-watchos/Occurrence.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64/Occurrence_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/Occurrence.build/Debug-watchos/Occurrence.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.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/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64/Occurrence-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64/Binary/Occurrence.o normal arm64 (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos8.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64/Occurrence.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64/Occurrence_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64/Occurrence_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64/Occurrence.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64/Binary/Occurrence.o
SwiftDriverJobDiscovery normal arm64_32 Compiling SQLiteLogProvider.swift, OccurrenceLogStreamer.swift, LogView.swift (in target 'Occurrence' from project 'Occurrence')
SwiftDriver\ Compilation Occurrence normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Occurrence -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64_32/Occurrence.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -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-watchos8.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/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -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/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64_32/Occurrence-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/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64_32/Occurrence.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/Occurrence.build/Debug-watchos/Occurrence.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64_32/Occurrence_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/Occurrence.build/Debug-watchos/Occurrence.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.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/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64_32/Occurrence-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64_32/Binary/Occurrence.o normal arm64_32 (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos8.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64_32/Occurrence.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64_32/Occurrence_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64_32/Occurrence_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64_32/Occurrence.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64_32/Binary/Occurrence.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Occurrence.o normal arm64\ armv7k\ arm64_32 (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64/Binary/Occurrence.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/armv7k/Binary/Occurrence.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64_32/Binary/Occurrence.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Occurrence.o
ExtractAppIntentsMetadata (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name Occurrence --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk --xcode-version 16E140 --platform-family watchOS --deployment-target 8.0 --bundle-identifier spi-builder-workspace.Occurrence --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Occurrence.appintents --target-triple arm64-apple-watchos8.0 --target-triple armv7k-apple-watchos8.0 --target-triple arm64_32-apple-watchos8.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Occurrence.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64/Occurrence_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/armv7k/Occurrence_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64_32/Occurrence_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64/Occurrence.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/armv7k/Occurrence.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64_32/Occurrence.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Occurrence.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Occurrence.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64/Occurrence.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/armv7k/Occurrence.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Occurrence.build/Debug-watchos/Occurrence.build/Objects-normal/arm64_32/Occurrence.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-30 16:10:55.870 appintentsmetadataprocessor[1011:5960] Starting appintentsmetadataprocessor export
2025-04-30 16:10:55.908 appintentsmetadataprocessor[1011:5960] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Occurrence.o (in target 'Occurrence' from project 'Occurrence')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Occurrence.o
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
{
"identity" : "swift-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.6.2",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log.git"
},
{
"identity" : "statement",
"requirement" : {
"range" : [
{
"lower_bound" : "0.7.2",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/richardpiazza/Statement.git"
},
{
"identity" : "sqlite.swift",
"requirement" : {
"range" : [
{
"lower_bound" : "0.14.1",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/stephencelis/SQLite.swift.git"
}
],
"manifest_display_name" : "Occurrence",
"name" : "Occurrence",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "12.0"
},
{
"name" : "maccatalyst",
"version" : "15.0"
},
{
"name" : "ios",
"version" : "15.0"
},
{
"name" : "tvos",
"version" : "15.0"
},
{
"name" : "watchos",
"version" : "8.0"
}
],
"products" : [
{
"name" : "Occurrence",
"targets" : [
"Occurrence"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "OccurrenceTests",
"module_type" : "SwiftTarget",
"name" : "OccurrenceTests",
"path" : "Tests/OccurrenceTests",
"product_dependencies" : [
"Logging"
],
"sources" : [
"CoreDataLogProviderTests.swift",
"LogProviderTestCase.swift",
"LogStreamerTests.swift",
"LoggableErrorTests.swift",
"LoggerMetadataTests.swift",
"OccurrenceTests.swift",
"RedactionTests.swift",
"SQLiteLogProviderTests.swift"
],
"target_dependencies" : [
"Occurrence"
],
"type" : "test"
},
{
"c99name" : "Occurrence",
"module_type" : "SwiftTarget",
"name" : "Occurrence",
"path" : "Sources/Occurrence",
"product_dependencies" : [
"Logging",
"Statement",
"StatementSQLite",
"SQLite"
],
"product_memberships" : [
"Occurrence"
],
"sources" : [
"CoreData/CoreDataLogProvider.swift",
"CoreData/LogModel.swift",
"CoreData/Logger.Filter+Predicate.swift",
"CoreData/ManagedEntry.swift",
"Extensions/Array+Occurrence.swift",
"Extensions/CocoaError+Occurrence.swift",
"Extensions/DecodingError+Occurrence.swift",
"Extensions/Dictionary+Occurrence.swift",
"Extensions/EncodingError+Occurrence.swift",
"Extensions/FileManager+Occurrence.swift",
"Extensions/Logger+Entry.swift",
"Extensions/Logger+Filter.swift",
"Extensions/Logger+Occurrence.swift",
"Extensions/Logger+Subsystem.swift",
"Extensions/Logger.Level+Occurrence.swift",
"Extensions/Logger.Message+Occurrence.swift",
"Extensions/Logger.Metadata+Occurrence.swift",
"Extensions/Logger.MetadataKey.swift",
"Extensions/Logger.MetadataValue+Occurrence.swift",
"Extensions/URLError+Occurrence.swift",
"LazyLogger.swift",
"LogProvider.swift",
"LogStreamer.swift",
"LoggableError.swift",
"Occurrence.swift",
"SQLite/Logger.Filter+Where.swift",
"SQLite/SQLiteEntry+Mapping.swift",
"SQLite/SQLiteEntry.swift",
"SQLite/SQLiteLogProvider.swift",
"Streamer/OccurrenceLogStreamer.swift",
"SwiftUI/LogView.swift"
],
"type" : "library"
}
],
"tools_version" : "5.8"
}
Done.