We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 942e899 commit 9a3c402Copy full SHA for 9a3c402
Coder-Desktop/VPN/Manager.swift
@@ -162,6 +162,7 @@ actor Manager {
162
}
163
164
func startVPN() async throws(ManagerError) {
165
+ // Clear progress message
166
pushProgress(msg: nil)
167
logger.info("sending start rpc")
168
guard let tunFd = ptp.tunnelFileDescriptor else {
@@ -241,10 +242,10 @@ actor Manager {
241
242
243
func pushProgress(msg: String?) {
244
guard let conn = globalXPCListenerDelegate.conn else {
- logger.error("couldn't send progress message to app: no connection")
245
+ logger.warning("couldn't send progress message to app: no connection")
246
return
247
- logger.info("sending progress message to app: \(msg ?? "nil")")
248
+ logger.debug("sending progress message to app: \(msg ?? "nil")")
249
conn.onProgress(msg: msg)
250
251
0 commit comments