Skip to content

Commit

Permalink
(fix): Remove superflous console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
corneliouzbett committed Jul 7, 2023
1 parent f22b154 commit dd85d2f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions service/patient-reminder.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,6 @@ function qualifiesDifferenciatedReminders(data) {
}

function TPTReminders(data) {
console.log('data', data);
let reminders = [];
let months = 6;
let treatment = 'INH';
Expand Down Expand Up @@ -902,7 +901,7 @@ function getFPExpiryDate(data) {
}

async function generateReminders(etlResults, eidResults) {
console.log('REMINDERS generateReminders');
// console.log('REMINDERS generateReminders');
let reminders = [];
let patientReminder;
if (etlResults && etlResults.length > 0) {
Expand Down Expand Up @@ -1024,7 +1023,7 @@ function getCerivalScreeningReminder(personId) {
})
.catch((error) => {
resolve([]);
console.log('Error', error);
console.error('Error', error);
});
});
}
Expand Down

0 comments on commit dd85d2f

Please sign in to comment.