[Lldb-commits] [lldb] deb359a - [lldb/crashlog] Reformat module loading logs (NFC)

Med Ismail Bennani via lldb-commits lldb-commits at lists.llvm.org
Thu Mar 10 11:07:14 PST 2022


Author: Med Ismail Bennani
Date: 2022-03-10T11:06:59-08:00
New Revision: deb359aab33ed52ee167b5875c6e97bf6dbded15

URL: https://github.com/llvm/llvm-project/commit/deb359aab33ed52ee167b5875c6e97bf6dbded15
DIFF: https://github.com/llvm/llvm-project/commit/deb359aab33ed52ee167b5875c6e97bf6dbded15.diff

LOG: [lldb/crashlog] Reformat module loading logs (NFC)

Signed-off-by: Med Ismail Bennani <medismail.bennani at gmail.com>

Added: 
    

Modified: 
    lldb/examples/python/crashlog.py

Removed: 
    


################################################################################
diff  --git a/lldb/examples/python/crashlog.py b/lldb/examples/python/crashlog.py
index 50e1ebf625e38..939f3fcedcf67 100755
--- a/lldb/examples/python/crashlog.py
+++ b/lldb/examples/python/crashlog.py
@@ -267,7 +267,7 @@ def locate_module_and_debug_symbols(self):
             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 @@ def locate_module_and_debug_symbols(self):
                     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


        


More information about the lldb-commits mailing list