refactor: enable warn logs; add a warning when we are skipping an annotation (#20786)
This commit is contained in:
parent
1e2731ef63
commit
99d1262ff1
@ -36,9 +36,7 @@ module.exports = class Logger {
|
||||
}
|
||||
|
||||
warn(...messages) {
|
||||
if (debug) {
|
||||
console.log(date(), 'WARN\t', `[${this.context}]`, ...parse(messages));
|
||||
}
|
||||
console.log(date(), 'WARN\t', `[${this.context}]`, ...parse(messages));
|
||||
}
|
||||
|
||||
error(...messages) {
|
||||
|
@ -704,6 +704,7 @@ function overlay_triangle(svg, annotation) {
|
||||
|
||||
function overlay_text(svg, annotation) {
|
||||
if (annotation.size == null || annotation.size.length < 2) {
|
||||
logger.warn("An annotation of type text had a missing or malformed property size and was excluded from the extraction. " + JSON.stringify(annotation));
|
||||
return
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user