Skip to content

Commit

Permalink
remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethbruskiewicz committed Dec 10, 2024
1 parent a117162 commit ed6b84f
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 11 deletions.
5 changes: 0 additions & 5 deletions lib/DataHarmonizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -2853,7 +2853,6 @@ class DataHarmonizer {
const handsontableInstance = this.hot;
const tableData = this.fullData(handsontableInstance);
const columnHeaders = handsontableInstance.getColHeader().map(stripDiv); // TODO: use fields() or this.getFlatHeaders()[1];
console.log(columnHeaders);

function createStruct(row) {
const structInstance = {};
Expand All @@ -2872,8 +2871,6 @@ class DataHarmonizer {
}
}

console.log(structInstance);

return structInstance;
}

Expand All @@ -2887,8 +2884,6 @@ class DataHarmonizer {
}
}

console.log(arrayOfStructs);

return arrayOfStructs;
}
}
Expand Down
2 changes: 0 additions & 2 deletions lib/utils/files.js
Original file line number Diff line number Diff line change
Expand Up @@ -242,8 +242,6 @@ function processAndSave(
const worksheet = workbook.Sheets[sheetName];
const sheetData = XlsxUtils.sheet_to_json(worksheet, { header: 1 });

console.log(worksheet, sheetData);

const formattedData = sheetData
.map((row) => row.join(delimiter))
.join('\n');
Expand Down
1 change: 0 additions & 1 deletion web/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ const main = async function () {
});

new Footer(dhFooterRoot, context);
console.log(context);
return context;
})
.then(async (context) => {
Expand Down
1 change: 0 additions & 1 deletion web/templates/canada_covid19/export.js
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,6 @@ export default {
mappedCellVal = 'Virus passage';
}

console.log(field.name,field)
// All null values should be converted to "Unknown"
if (field.dataStatus) {
const standardizedDataStatus = field.dataStatus.map((val) =>
Expand Down
2 changes: 0 additions & 2 deletions web/templates/phac_dexa/export.js
Original file line number Diff line number Diff line change
Expand Up @@ -311,8 +311,6 @@ export default {
'GRDI'
);

console.log(dataRow, ruleSourceFieldNames, RuleDB, sourceFields,sourceFieldNameMap);

// So all rule field values can be referenced in lower case.
for (let sourceField of Object.keys(RuleDB)) {
if (RuleDB[sourceField])
Expand Down

0 comments on commit ed6b84f

Please sign in to comment.