Skip to content

Commit f6c8aba

Browse files
committed
commented out logs are removed
1 parent 0b66eab commit f6c8aba

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

Sources/Curly/Helpers/ClientAPIMappingHelper.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ struct ClientAPIMappingHelper {
2121
} catch let error as CURLResponse.Error {
2222
let err = error.response
2323
self.parseResponse(err, responseType, false, completion)
24-
// LogFile.debug("responseCode: \(err.responseCode) - json: \(err.bodyString) - responseType:\(responseType) ")
2524
} catch let error {
2625
LogFile.critical("CURL GET request perform error")
2726
let httpError = ClientAPIError(code: 500,
@@ -56,7 +55,6 @@ struct ClientAPIMappingHelper {
5655
let model = try decoder.decode(ClientAPIError.self, from: jsonData)
5756
completion(nil, model)
5857
}
59-
// LogFile.info("responseCode: \(resp.responseCode) - json: \n\(resp.bodyString) - responseType:\(responseType) ")
6058
} catch let error as CURLResponse.Error {
6159
let err = error.response
6260
let httpError = ClientAPIError(code: err.responseCode,

Sources/Curly/HttpClient.swift

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,10 +130,6 @@ public struct HttpClient {
130130
}
131131
}
132132

133-
134-
135-
136-
137133
/// The function that triggers the specific interaction with a remote server
138134
/// Parameters:
139135
/// - method: The HTTP Method enum, i.e. .get, .post

0 commit comments

Comments
 (0)