File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ class XPCService {
4545
4646 @XPCServiceActor
4747 private func buildConnection( ) -> InvalidatingConnection {
48- logger. info ( " Rebuilding connection " )
48+ // logger.info("Rebuilding connection")
4949 let connection = switch kind {
5050 case let . machService( name) :
5151 NSXPCConnection ( machServiceName: name)
@@ -54,14 +54,14 @@ class XPCService {
5454 }
5555 connection. remoteObjectInterface = interface
5656 connection. invalidationHandler = { [ weak self] in
57- self ? . logger. info ( " XPCService Invalidated " )
57+ // self?.logger.info("XPCService Invalidated")
5858 Task { [ weak self] in
5959 self ? . markAsInvalidated ( )
6060 await self ? . delegate? . connectionDidInvalidate ( )
6161 }
6262 }
6363 connection. interruptionHandler = { [ weak self] in
64- self ? . logger. info ( " XPCService interrupted " )
64+ // self?.logger.info("XPCService interrupted")
6565 Task { [ weak self] in
6666 await self ? . delegate? . connectionDidInterrupt ( )
6767 }
You can’t perform that action at this time.
0 commit comments