SwiftCrossUI's logging mechanism
SwiftCrossUI uses swift-log for logging
warnings. By default, it will log messages to the console; however, you can
use any log handler you want. To do so, add your handler of choice to your
package dependencies, then implement App/logHandler(label:metadataProvider:)-9yiqb
in your App conformance.
LoggingSystem.bootstrap(_:) in
App/init() and pass it that handler. SwiftCrossUI uses the handler
returned by App/logHandler(label:metadataProvider:)-9yiqb directly, and
does not call bootstrap(_:) at any point.