More details are needed to debug issues. Warning is printed to bitbake
output console. Task execution logs will contain all debug output.

Signed-off-by: Mikko Rapeli <[email protected]>
---
 meta/lib/oeqa/utils/qemurunner.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/lib/oeqa/utils/qemurunner.py 
b/meta/lib/oeqa/utils/qemurunner.py
index 97c049e224..eb6d3e8c57 100644
--- a/meta/lib/oeqa/utils/qemurunner.py
+++ b/meta/lib/oeqa/utils/qemurunner.py
@@ -500,11 +500,11 @@ class QemuRunner:
             if time.time() >= endtime:
                 self.logger.warning("Target didn't reach login banner in %d 
seconds (%s)" %
                                   (self.boottime, time.strftime("%D 
%H:%M:%S")))
-            tail = lambda l: "\n".join(l.splitlines()[-25:])
+            tail = lambda l: "\n".join(l.splitlines()[-100:])
             bootlog = self.decode_qemulog(bootlog)
             # in case bootlog is empty, use tail qemu log store at self.msg
             lines = tail(bootlog if bootlog else self.msg)
-            self.logger.warning("Last 25 lines of text (%d):\n%s" % 
(len(bootlog), lines))
+            self.logger.warning("Last 100 lines of text (%d):\n%s" % 
(len(bootlog), lines))
             self.logger.warning("Check full boot log: %s" % self.logfile)
             self._dump_host()
             self.stop()
-- 
2.34.1

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#176200): 
https://lists.openembedded.org/g/openembedded-core/message/176200
Mute This Topic: https://lists.openembedded.org/mt/96401364/21656
Group Owner: [email protected]
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[[email protected]]
-=-=-=-=-=-=-=-=-=-=-=-

Reply via email to