feat(bridge): add Bonjour node bridge

This commit is contained in:
Peter Steinberger
2025-12-12 21:18:46 +00:00
parent b9007dc721
commit 0b532579d8
17 changed files with 1002 additions and 13 deletions

View File

@@ -28,7 +28,7 @@ actor DiagnosticsFileLog {
}
nonisolated static func logFileURL() -> URL {
Self.logDirectoryURL().appendingPathComponent("diagnostics.jsonl", isDirectory: false)
self.logDirectoryURL().appendingPathComponent("diagnostics.jsonl", isDirectory: false)
}
nonisolated func log(category: String, event: String, fields: [String: String]? = nil) {
@@ -131,4 +131,3 @@ actor DiagnosticsFileLog {
Self.logDirectoryURL().appendingPathComponent("\(self.fileName).\(index)", isDirectory: false)
}
}