Skip to content

Commit

Permalink
console.logs are removed
Browse files Browse the repository at this point in the history
  • Loading branch information
Umit Coskun Aydinoglu committed Oct 12, 2023
1 parent 161f738 commit 62926ad
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions api/utils/countly-request/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,12 +156,10 @@ module.exports = function(uri, options, callback) {
// Make the request using got
got(params.options)
.then(response => {
console.log("appi called success");
// Call the callback with the response data
params.callback(null, response, response.body);
})
.catch(error => {
console.log("appi called failure");
// Call the callback with the error
params.callback(error);
});
Expand All @@ -170,11 +168,9 @@ module.exports = function(uri, options, callback) {
// Make the request using got
got(params.uri, params.options)
.then(response => {
console.log("appi called success");
params.callback(null, response, response.body);
})
.catch(error => {
console.log("appi called failure");
// Call the callback with the error
params.callback(error);
});
Expand Down

0 comments on commit 62926ad

Please sign in to comment.