Skip to content

Commit

Permalink
commented out logs are removed
Browse files Browse the repository at this point in the history
  • Loading branch information
conqueror committed Apr 13, 2018
1 parent 0b66eab commit f6c8aba
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
2 changes: 0 additions & 2 deletions Sources/Curly/Helpers/ClientAPIMappingHelper.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ struct ClientAPIMappingHelper {
} catch let error as CURLResponse.Error {
let err = error.response
self.parseResponse(err, responseType, false, completion)
// LogFile.debug("responseCode: \(err.responseCode) - json: \(err.bodyString) - responseType:\(responseType) ")
} catch let error {
LogFile.critical("CURL GET request perform error")
let httpError = ClientAPIError(code: 500,
Expand Down Expand Up @@ -56,7 +55,6 @@ struct ClientAPIMappingHelper {
let model = try decoder.decode(ClientAPIError.self, from: jsonData)
completion(nil, model)
}
// LogFile.info("responseCode: \(resp.responseCode) - json: \n\(resp.bodyString) - responseType:\(responseType) ")
} catch let error as CURLResponse.Error {
let err = error.response
let httpError = ClientAPIError(code: err.responseCode,
Expand Down
4 changes: 0 additions & 4 deletions Sources/Curly/HttpClient.swift
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,6 @@ public struct HttpClient {
}
}





/// The function that triggers the specific interaction with a remote server
/// Parameters:
/// - method: The HTTP Method enum, i.e. .get, .post
Expand Down

0 comments on commit f6c8aba

Please sign in to comment.