File tree 1 file changed +0
-3
lines changed
Sources/ParseSwift/Extensions
1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -40,12 +40,10 @@ internal extension URLSession {
40
40
responseError: Error ? ,
41
41
mapper: @escaping ( Data ) throws -> U ) -> Result < U , ParseError > {
42
42
if let responseError = responseError {
43
- print ( " ****1: \( responseError) " )
44
43
guard let parseError = responseError as? ParseError else {
45
44
return . failure( ParseError ( code: . unknownError,
46
45
message: " Unable to connect with parse-server: \( responseError) " ) )
47
46
}
48
- print ( " ****2: \( parseError) " )
49
47
return . failure( parseError)
50
48
}
51
49
guard let response = urlResponse else {
@@ -86,7 +84,6 @@ internal extension URLSession {
86
84
// swiftlint:disable:next line_length
87
85
message: " Error decoding parse-server response: \( response) with error: \( error. localizedDescription) Format: \( String ( describing: String ( data: json, encoding: . utf8) ) ) " ) )
88
86
}
89
- print ( " **** 7: \( parseError) " )
90
87
return . failure( parseError)
91
88
}
92
89
}
You can’t perform that action at this time.
0 commit comments