SwiftUI URLRequest Warning: "Connection has no local endpoint"

I have a simple SwiftUI application that sends a URLRequest as shown in the code snippet below:

import SwiftUI  
  
@main  
struct GOGODemoApp: App {  
    var body: some Scene {  
        WindowGroup {  
            MyView()  
        }  
    }  
}  
  
struct MyView: View {  
    var body: some View {  
        Button("Click") {  
            sendHTTPRequest(to: "https://www.google.com") { code, err in  
                print("Finished, code: \(code ?? -1), err: \(String(describing: err))")  
            }  
        }  
    }  
}  
  
func sendHTTPRequest(to urlString: String, completion: @escaping (Int?, Error?) -> Void) {  
    guard let url = URL(string: urlString) else {  
        completion(nil, NSError(domain: "InvalidURL", code: 0, userInfo: nil))  
        return  
    }  
    let task = URLSession.shared.dataTask(with: url) { _, resp, error in  
        if let httpResponse = resp as? HTTPURLResponse {  
            completion(httpResponse.statusCode, error)  
        } else {  
            completion(-1, error)  
        }  
    }  
    task.resume()  
}

However, Xcode prints the following warning messages:

nw_connection_copy_connected_local_endpoint_block_invoke [C1] Connection has no local endpoint  
nw_connection_copy_connected_local_endpoint_block_invoke [C1] Connection has no local endpoint  
nw_connection_copy_connected_local_endpoint_block_invoke [C3] Connection has no local endpoint  
nw_connection_copy_connected_local_endpoint_block_invoke [C3] Connection has no local endpoint  
Finished, code: 200, err: nil

What does the warning 'Connection has no local endpoint' mean?

Thank you for your assistance!

SwiftUI URLRequest Warning: "Connection has no local endpoint"
 
 
Q