We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent3c56df9 commit06ddf08Copy full SHA for 06ddf08
Coder-Desktop/VPN/Manager.swift
@@ -162,6 +162,7 @@ actor Manager {
162
}
163
164
func startVPN()asyncthrows(ManagerError){
165
+ // Clear progress message
166
pushProgress(msg:nil)
167
logger.info("sending start rpc")
168
guardlet tunFd= ptp.tunnelFileDescriptorelse{
@@ -241,10 +242,10 @@ actor Manager {
241
242
243
func pushProgress(msg:String?){
244
guardlet conn= globalXPCListenerDelegate.connelse{
- 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