Skip to content

Commit

Permalink
Remove unnecessary console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
sroertgen committed Jan 22, 2024
1 parent 608f440 commit e36386e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/publishToReconciliation/handleData.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ async function getTurtleString(filePath, fileUrl) {
} else if (fileUrl) {
const response = await fetch(fileUrl)
const ttlString = await response.text()
console.log(ttlString)
return ttlString
}
}
Expand All @@ -49,7 +48,6 @@ export const parseFile = async (reconcileData, log) => {
var data = [];
const account = reconcileData.account;
try {
console.log(`> Read and parse ${account}/${path.basename(reconcileData.filePath)} ...`);
if (!/[a-zA-Z0-9]/.test(account.slice(0, 1))) {
throw new IllegalCharacterError(`Invalid data: account must start with a letter or a number. Instead, its value is: ${account}`)
}
Expand Down

0 comments on commit e36386e

Please sign in to comment.