Skip to content

Commit

Permalink
Fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
smilindave26 committed Jun 30, 2023
1 parent b844f2d commit ca24fc6
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 ca24fc6

Please sign in to comment.