Don't process captured boot log in case it contains invalid utf8 characters etc which may filter out important log entries.
Signed-off-by: Mikko Rapeli <[email protected]> --- meta/lib/oeqa/utils/qemurunner.py | 1 - 1 file changed, 1 deletion(-) diff --git a/meta/lib/oeqa/utils/qemurunner.py b/meta/lib/oeqa/utils/qemurunner.py index 3cd656df82..df290fc091 100644 --- a/meta/lib/oeqa/utils/qemurunner.py +++ b/meta/lib/oeqa/utils/qemurunner.py @@ -115,7 +115,6 @@ class QemuRunner: def log(self, msg): if self.logfile: - self.msg += self.decode_qemulog(msg) with codecs.open(self.logfile, "ab") as f: f.write(msg) -- 2.34.1
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#188630): https://lists.openembedded.org/g/openembedded-core/message/188630 Mute This Topic: https://lists.openembedded.org/mt/101731194/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
