remove unnecessary logging

This commit is contained in:
orangecoding
2025-09-12 13:41:08 +02:00
parent 9f7506a1b3
commit ac0ea64c07

View File

@@ -66,7 +66,9 @@ export function parse(crawlContainer, crawlFields, text, url) {
if (parsedObject.id != null) {
result.push(parsedObject);
} else {
console.warn('ID not found. Not relaying object.');
/* eslint-disable no-console */
console.debug('ID not found. Not relaying object.');
/* eslint-enable no-console */
}
});