From deb359aab33ed52ee167b5875c6e97bf6dbded15 Mon Sep 17 00:00:00 2001 From: Med Ismail Bennani Date: Thu, 10 Mar 2022 11:06:42 -0800 Subject: [PATCH] [lldb/crashlog] Reformat module loading logs (NFC) Signed-off-by: Med Ismail Bennani --- lldb/examples/python/crashlog.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lldb/examples/python/crashlog.py b/lldb/examples/python/crashlog.py index 50e1ebf..939f3fc 100755 --- a/lldb/examples/python/crashlog.py +++ b/lldb/examples/python/crashlog.py @@ -267,7 +267,7 @@ class CrashLog(symbolication.Symbolicator): self.resolved = True uuid_str = self.get_normalized_uuid_string() if self.show_symbol_progress(): - print('Getting symbols for %s %s...' % (uuid_str, self.path), end=' ') + print('Getting symbols for %s %s...\n' % (uuid_str, self.path), end=' ') if os.path.exists(self.dsymForUUIDBinary): dsym_for_uuid_command = '%s %s' % ( self.dsymForUUIDBinary, uuid_str) @@ -317,7 +317,7 @@ class CrashLog(symbolication.Symbolicator): pass if (self.resolved_path and os.path.exists(self.resolved_path)) or ( self.path and os.path.exists(self.path)): - print('ok') + print('Resolved symbols for %s %s...\n' % (uuid_str, self.path), end=' ') return True else: self.unavailable = True -- 2.7.4