Skip to content

Commit

Permalink
remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
erikh360 committed Jul 23, 2024
1 parent b6dac14 commit cc57a92
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion go-app-ussd_chw_rapidpro.js
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,6 @@ go.app = function() {
.then(function() {
return self.states.create("state_registration_complete");
}).catch(function(e) {
console.log(e.message);
// Go to error state after 3 failed HTTP requests
opts.http_error_count = _.get(opts, "http_error_count", 0) + 1;
if(opts.http_error_count === 3) {
Expand Down
1 change: 0 additions & 1 deletion src/ussd_chw_rapidpro.js
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,6 @@ go.app = function() {
.then(function() {
return self.states.create("state_registration_complete");
}).catch(function(e) {
console.log(e.message);
// Go to error state after 3 failed HTTP requests
opts.http_error_count = _.get(opts, "http_error_count", 0) + 1;
if(opts.http_error_count === 3) {
Expand Down

0 comments on commit cc57a92

Please sign in to comment.