Skip to content

Commit 5b38b40

Browse files
marc-hbfredoh9
authored andcommitted
lib.sh: warn about HTML bug hiding zephyr log levels
Internal Intel issue 448. Signed-off-by: Marc Herbert <marc.herbert@intel.com>
1 parent c058fcf commit 5b38b40

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

case-lib/lib.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,10 @@ check_error_in_fw_logfile()
529529
if (set -x
530530
grep -B 2 -A 1 -i --word-regexp -e 'ERR' -e 'ERROR' -e '<err>' "$1"
531531
); then
532-
return 1
532+
# See internal Intel bug #448
533+
dlogw 'An HTML display bug hides the bracketed Zephyr &lt;loglevels&gt; in this tab,'
534+
dlogw 'switch to the tab with the complete logs to see the log levels.'
535+
return 1
533536
fi
534537
}
535538

0 commit comments

Comments
 (0)