The Swift Package Index logo.Swift Package Index

Build Information

Successful build of Swiftwood, reference main (23841a), with Swift 6.1 for Wasm on 28 May 2025 11:55:48 UTC.

Swift 6 data race errors: 14

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/KnowMeGit/Swiftwood.git
Reference: main
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/KnowMeGit/Swiftwood
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 23841ac (refactor) update readme with fixed setup example
Cloned https://github.com/KnowMeGit/Swiftwood.git
Revision (git rev-parse @):
23841acf2243a622559d34bdf79959a98b86f344
SUCCESS checkout https://github.com/KnowMeGit/Swiftwood.git at main
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/KnowMeGit/Swiftwood.git
https://github.com/KnowMeGit/Swiftwood.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Swiftwood",
  "name" : "Swiftwood",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Swiftwood",
      "targets" : [
        "Swiftwood"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftwoodTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftwoodTests",
      "path" : "Tests/SwiftwoodTests",
      "sources" : [
        "AutomatedSwiftwoodTests.swift",
        "ManualSwiftwoodTests.swift",
        "SwiftwoodTests.swift"
      ],
      "target_dependencies" : [
        "Swiftwood"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Swiftwood",
      "module_type" : "SwiftTarget",
      "name" : "Swiftwood",
      "path" : "Sources/Swiftwood",
      "product_memberships" : [
        "Swiftwood"
      ],
      "sources" : [
        "CensoredLogItem.swift",
        "ConsoleLogDestination.swift",
        "FilesDestination.swift",
        "LogCategory.swift",
        "LogEntryEncoder.swift",
        "Swiftwood.swift",
        "SwiftwoodDestination.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/10] Compiling Swiftwood ConsoleLogDestination.swift
[4/10] Compiling Swiftwood FilesDestination.swift
[5/10] Compiling Swiftwood LogCategory.swift
/host/spi-builder-workspace/Sources/Swiftwood/LogCategory.swift:24:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LogCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |  You are an adult. You can come up with your own ideas.
 8 |  */
 9 | public struct LogCategory: RawRepresentable, ExpressibleByStringLiteral, CustomStringConvertible, Codable, Hashable {
   |               `- note: consider making struct 'LogCategory' conform to the 'Sendable' protocol
10 | 	public let rawValue: String
11 |
   :
22 |
23 | public extension LogCategory {
24 | 	static let `default`: LogCategory = "default"
   |             |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LogCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | }
26 |
[6/10] Compiling Swiftwood SwiftwoodDestination.swift
[7/10] Compiling Swiftwood LogEntryEncoder.swift
[8/10] Compiling Swiftwood Swiftwood.swift
/host/spi-builder-workspace/Sources/Swiftwood/Swiftwood.swift:8:13: warning: static property 'testingVerbosity' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  6 |
  7 | 	#if DEBUG
  8 | 	static var testingVerbosity = false
    |             |- warning: static property 'testingVerbosity' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'testingVerbosity' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: add '@MainActor' to make static property 'testingVerbosity' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 | 	#endif
 10 | 	private static var _cachedBuildInfo: String??
/host/spi-builder-workspace/Sources/Swiftwood/Swiftwood.swift:10:21: warning: static property '_cachedBuildInfo' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  8 | 	static var testingVerbosity = false
  9 | 	#endif
 10 | 	private static var _cachedBuildInfo: String??
    |                     |- warning: static property '_cachedBuildInfo' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert '_cachedBuildInfo' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property '_cachedBuildInfo' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 | 	private static var _buildInfoGenerator: () -> String? = {
 12 | 		Bundle.main.object(forInfoDictionaryKey: "CFBundleVersion") as? String
/host/spi-builder-workspace/Sources/Swiftwood/Swiftwood.swift:11:21: warning: static property '_buildInfoGenerator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  9 | 	#endif
 10 | 	private static var _cachedBuildInfo: String??
 11 | 	private static var _buildInfoGenerator: () -> String? = {
    |                     |- warning: static property '_buildInfoGenerator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert '_buildInfoGenerator' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property '_buildInfoGenerator' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 | 		Bundle.main.object(forInfoDictionaryKey: "CFBundleVersion") as? String
 13 | 	}
/host/spi-builder-workspace/Sources/Swiftwood/Swiftwood.swift:24:20: warning: static property 'cacheBuildInfo' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 22 | 		}
 23 | 	}
 24 | 	public static var cacheBuildInfo = true
    |                    |- warning: static property 'cacheBuildInfo' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'cacheBuildInfo' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: add '@MainActor' to make static property 'cacheBuildInfo' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |
 26 | 	public struct Format {
/host/spi-builder-workspace/Sources/Swiftwood/Swiftwood.swift:47:21: warning: static property 'defaultDateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 45 |
 46 |
 47 | 		public static var defaultDateFormatter: DateFormatter = {
    |                     |- warning: static property 'defaultDateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'defaultDateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property 'defaultDateFormatter' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 48 | 			let formatter = DateFormatter()
 49 | 			formatter.dateFormat = "MM/dd/yyyy HH:mm:ss.SSS"
/host/spi-builder-workspace/Sources/Swiftwood/Swiftwood.swift:128:33: warning: static property 'destinations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
126 | 	}
127 |
128 | 	public private(set) static var destinations: [SwiftwoodDestination] = []
    |                                 |- warning: static property 'destinations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                 |- note: convert 'destinations' to a 'let' constant to make 'Sendable' shared state immutable
    |                                 |- note: add '@MainActor' to make static property 'destinations' part of global actor 'MainActor'
    |                                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
129 |
130 | 	public static var logFormat = Format()
/host/spi-builder-workspace/Sources/Swiftwood/Swiftwood.swift:130:20: warning: static property 'logFormat' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
128 | 	public private(set) static var destinations: [SwiftwoodDestination] = []
129 |
130 | 	public static var logFormat = Format()
    |                    |- warning: static property 'logFormat' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'logFormat' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: add '@MainActor' to make static property 'logFormat' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
131 |
132 | 	public enum ReplicationOption {
/host/spi-builder-workspace/Sources/Swiftwood/Swiftwood.swift:291:21: warning: static property 'veryVerbose' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
289 |
290 | 	public struct Level: Comparable, Equatable {
291 | 		public static var veryVerbose = Level(textValue: "🤎 VERY VERBOSE", level: 0)
    |                     |- warning: static property 'veryVerbose' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'veryVerbose' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property 'veryVerbose' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
292 | 		public static var verbose = Level(textValue: "💜 VERBOSE", level: 20)
293 | 		public static var debug = Level(textValue: "💚 DEBUG", level: 40)
/host/spi-builder-workspace/Sources/Swiftwood/Swiftwood.swift:292:21: warning: static property 'verbose' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
290 | 	public struct Level: Comparable, Equatable {
291 | 		public static var veryVerbose = Level(textValue: "🤎 VERY VERBOSE", level: 0)
292 | 		public static var verbose = Level(textValue: "💜 VERBOSE", level: 20)
    |                     |- warning: static property 'verbose' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'verbose' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property 'verbose' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
293 | 		public static var debug = Level(textValue: "💚 DEBUG", level: 40)
294 | 		public static var info = Level(textValue: "💙 INFO", level: 60)
/host/spi-builder-workspace/Sources/Swiftwood/Swiftwood.swift:293:21: warning: static property 'debug' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
291 | 		public static var veryVerbose = Level(textValue: "🤎 VERY VERBOSE", level: 0)
292 | 		public static var verbose = Level(textValue: "💜 VERBOSE", level: 20)
293 | 		public static var debug = Level(textValue: "💚 DEBUG", level: 40)
    |                     |- warning: static property 'debug' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'debug' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property 'debug' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
294 | 		public static var info = Level(textValue: "💙 INFO", level: 60)
295 | 		public static var warning = Level(textValue: "💛 WARNING", level: 80)
/host/spi-builder-workspace/Sources/Swiftwood/Swiftwood.swift:294:21: warning: static property 'info' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
292 | 		public static var verbose = Level(textValue: "💜 VERBOSE", level: 20)
293 | 		public static var debug = Level(textValue: "💚 DEBUG", level: 40)
294 | 		public static var info = Level(textValue: "💙 INFO", level: 60)
    |                     |- warning: static property 'info' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'info' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property 'info' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
295 | 		public static var warning = Level(textValue: "💛 WARNING", level: 80)
296 | 		public static var error = Level(textValue: "❤️ ERROR", level: 100)
/host/spi-builder-workspace/Sources/Swiftwood/Swiftwood.swift:295:21: warning: static property 'warning' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
293 | 		public static var debug = Level(textValue: "💚 DEBUG", level: 40)
294 | 		public static var info = Level(textValue: "💙 INFO", level: 60)
295 | 		public static var warning = Level(textValue: "💛 WARNING", level: 80)
    |                     |- warning: static property 'warning' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'warning' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property 'warning' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
296 | 		public static var error = Level(textValue: "❤️ ERROR", level: 100)
297 |
/host/spi-builder-workspace/Sources/Swiftwood/Swiftwood.swift:296:21: warning: static property 'error' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
294 | 		public static var info = Level(textValue: "💙 INFO", level: 60)
295 | 		public static var warning = Level(textValue: "💛 WARNING", level: 80)
296 | 		public static var error = Level(textValue: "❤️ ERROR", level: 100)
    |                     |- warning: static property 'error' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'error' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property 'error' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
297 |
298 | 		public let textValue: String
[9/10] Emitting module Swiftwood
/host/spi-builder-workspace/Sources/Swiftwood/LogCategory.swift:24:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LogCategory' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |  You are an adult. You can come up with your own ideas.
 8 |  */
 9 | public struct LogCategory: RawRepresentable, ExpressibleByStringLiteral, CustomStringConvertible, Codable, Hashable {
   |               `- note: consider making struct 'LogCategory' conform to the 'Sendable' protocol
10 | 	public let rawValue: String
11 |
   :
22 |
23 | public extension LogCategory {
24 | 	static let `default`: LogCategory = "default"
   |             |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LogCategory' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | }
26 |
/host/spi-builder-workspace/Sources/Swiftwood/Swiftwood.swift:8:13: warning: static property 'testingVerbosity' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  6 |
  7 | 	#if DEBUG
  8 | 	static var testingVerbosity = false
    |             |- warning: static property 'testingVerbosity' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'testingVerbosity' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: add '@MainActor' to make static property 'testingVerbosity' part of global actor 'MainActor'
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  9 | 	#endif
 10 | 	private static var _cachedBuildInfo: String??
/host/spi-builder-workspace/Sources/Swiftwood/Swiftwood.swift:10:21: warning: static property '_cachedBuildInfo' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  8 | 	static var testingVerbosity = false
  9 | 	#endif
 10 | 	private static var _cachedBuildInfo: String??
    |                     |- warning: static property '_cachedBuildInfo' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert '_cachedBuildInfo' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property '_cachedBuildInfo' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 | 	private static var _buildInfoGenerator: () -> String? = {
 12 | 		Bundle.main.object(forInfoDictionaryKey: "CFBundleVersion") as? String
/host/spi-builder-workspace/Sources/Swiftwood/Swiftwood.swift:11:21: warning: static property '_buildInfoGenerator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  9 | 	#endif
 10 | 	private static var _cachedBuildInfo: String??
 11 | 	private static var _buildInfoGenerator: () -> String? = {
    |                     |- warning: static property '_buildInfoGenerator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert '_buildInfoGenerator' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property '_buildInfoGenerator' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 | 		Bundle.main.object(forInfoDictionaryKey: "CFBundleVersion") as? String
 13 | 	}
/host/spi-builder-workspace/Sources/Swiftwood/Swiftwood.swift:24:20: warning: static property 'cacheBuildInfo' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 22 | 		}
 23 | 	}
 24 | 	public static var cacheBuildInfo = true
    |                    |- warning: static property 'cacheBuildInfo' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'cacheBuildInfo' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: add '@MainActor' to make static property 'cacheBuildInfo' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |
 26 | 	public struct Format {
/host/spi-builder-workspace/Sources/Swiftwood/Swiftwood.swift:47:21: warning: static property 'defaultDateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 45 |
 46 |
 47 | 		public static var defaultDateFormatter: DateFormatter = {
    |                     |- warning: static property 'defaultDateFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'defaultDateFormatter' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property 'defaultDateFormatter' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 48 | 			let formatter = DateFormatter()
 49 | 			formatter.dateFormat = "MM/dd/yyyy HH:mm:ss.SSS"
/host/spi-builder-workspace/Sources/Swiftwood/Swiftwood.swift:128:33: warning: static property 'destinations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
126 | 	}
127 |
128 | 	public private(set) static var destinations: [SwiftwoodDestination] = []
    |                                 |- warning: static property 'destinations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                 |- note: convert 'destinations' to a 'let' constant to make 'Sendable' shared state immutable
    |                                 |- note: add '@MainActor' to make static property 'destinations' part of global actor 'MainActor'
    |                                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
129 |
130 | 	public static var logFormat = Format()
/host/spi-builder-workspace/Sources/Swiftwood/Swiftwood.swift:130:20: warning: static property 'logFormat' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
128 | 	public private(set) static var destinations: [SwiftwoodDestination] = []
129 |
130 | 	public static var logFormat = Format()
    |                    |- warning: static property 'logFormat' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'logFormat' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: add '@MainActor' to make static property 'logFormat' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
131 |
132 | 	public enum ReplicationOption {
/host/spi-builder-workspace/Sources/Swiftwood/Swiftwood.swift:291:21: warning: static property 'veryVerbose' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
289 |
290 | 	public struct Level: Comparable, Equatable {
291 | 		public static var veryVerbose = Level(textValue: "🤎 VERY VERBOSE", level: 0)
    |                     |- warning: static property 'veryVerbose' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'veryVerbose' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property 'veryVerbose' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
292 | 		public static var verbose = Level(textValue: "💜 VERBOSE", level: 20)
293 | 		public static var debug = Level(textValue: "💚 DEBUG", level: 40)
/host/spi-builder-workspace/Sources/Swiftwood/Swiftwood.swift:292:21: warning: static property 'verbose' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
290 | 	public struct Level: Comparable, Equatable {
291 | 		public static var veryVerbose = Level(textValue: "🤎 VERY VERBOSE", level: 0)
292 | 		public static var verbose = Level(textValue: "💜 VERBOSE", level: 20)
    |                     |- warning: static property 'verbose' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'verbose' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property 'verbose' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
293 | 		public static var debug = Level(textValue: "💚 DEBUG", level: 40)
294 | 		public static var info = Level(textValue: "💙 INFO", level: 60)
/host/spi-builder-workspace/Sources/Swiftwood/Swiftwood.swift:293:21: warning: static property 'debug' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
291 | 		public static var veryVerbose = Level(textValue: "🤎 VERY VERBOSE", level: 0)
292 | 		public static var verbose = Level(textValue: "💜 VERBOSE", level: 20)
293 | 		public static var debug = Level(textValue: "💚 DEBUG", level: 40)
    |                     |- warning: static property 'debug' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'debug' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property 'debug' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
294 | 		public static var info = Level(textValue: "💙 INFO", level: 60)
295 | 		public static var warning = Level(textValue: "💛 WARNING", level: 80)
/host/spi-builder-workspace/Sources/Swiftwood/Swiftwood.swift:294:21: warning: static property 'info' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
292 | 		public static var verbose = Level(textValue: "💜 VERBOSE", level: 20)
293 | 		public static var debug = Level(textValue: "💚 DEBUG", level: 40)
294 | 		public static var info = Level(textValue: "💙 INFO", level: 60)
    |                     |- warning: static property 'info' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'info' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property 'info' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
295 | 		public static var warning = Level(textValue: "💛 WARNING", level: 80)
296 | 		public static var error = Level(textValue: "❤️ ERROR", level: 100)
/host/spi-builder-workspace/Sources/Swiftwood/Swiftwood.swift:295:21: warning: static property 'warning' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
293 | 		public static var debug = Level(textValue: "💚 DEBUG", level: 40)
294 | 		public static var info = Level(textValue: "💙 INFO", level: 60)
295 | 		public static var warning = Level(textValue: "💛 WARNING", level: 80)
    |                     |- warning: static property 'warning' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'warning' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property 'warning' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
296 | 		public static var error = Level(textValue: "❤️ ERROR", level: 100)
297 |
/host/spi-builder-workspace/Sources/Swiftwood/Swiftwood.swift:296:21: warning: static property 'error' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
294 | 		public static var info = Level(textValue: "💙 INFO", level: 60)
295 | 		public static var warning = Level(textValue: "💛 WARNING", level: 80)
296 | 		public static var error = Level(textValue: "❤️ ERROR", level: 100)
    |                     |- warning: static property 'error' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'error' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: add '@MainActor' to make static property 'error' part of global actor 'MainActor'
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
297 |
298 | 		public let textValue: String
[10/10] Compiling Swiftwood CensoredLogItem.swift
Build complete! (10.30s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Swiftwood",
  "name" : "Swiftwood",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Swiftwood",
      "targets" : [
        "Swiftwood"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftwoodTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftwoodTests",
      "path" : "Tests/SwiftwoodTests",
      "sources" : [
        "AutomatedSwiftwoodTests.swift",
        "ManualSwiftwoodTests.swift",
        "SwiftwoodTests.swift"
      ],
      "target_dependencies" : [
        "Swiftwood"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Swiftwood",
      "module_type" : "SwiftTarget",
      "name" : "Swiftwood",
      "path" : "Sources/Swiftwood",
      "product_memberships" : [
        "Swiftwood"
      ],
      "sources" : [
        "CensoredLogItem.swift",
        "ConsoleLogDestination.swift",
        "FilesDestination.swift",
        "LogCategory.swift",
        "LogEntryEncoder.swift",
        "Swiftwood.swift",
        "SwiftwoodDestination.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Done.