Skip to content

Commit

Permalink
Merge pull request #192 from openziti/dev
Browse files Browse the repository at this point in the history
Fix error message
  • Loading branch information
smilindave26 authored Jun 30, 2023
2 parents b844f2d + ca24fc6 commit f68c041
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ZitiUrlProtocol.swift
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ import CZitiPrivate
let code = Int(resp.pointee.code)
guard code > 0 else {
let str = String(cString: ziti_errorstr(Int32(code)))
log.error("\(code) str")
log.error("\(code) \(str)")
let err = ZitiError(str, errorCode: code)
mySelf.notifyDidFailWithError(ZitiError(str, errorCode: code))
return
Expand Down

0 comments on commit f68c041

Please sign in to comment.