Skip to content

Commit fb76882

Browse files
committed
[lldb/crashlog] Reformat module loading logs (NFC)
Signed-off-by: Med Ismail Bennani <[email protected]>
1 parent 5eca07d commit fb76882

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/examples/python/crashlog.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ def locate_module_and_debug_symbols(self):
267267
self.resolved = True
268268
uuid_str = self.get_normalized_uuid_string()
269269
if self.show_symbol_progress():
270-
print('Getting symbols for %s %s...' % (uuid_str, self.path), end=' ')
270+
print('Getting symbols for %s %s...\n' % (uuid_str, self.path), end=' ')
271271
if os.path.exists(self.dsymForUUIDBinary):
272272
dsym_for_uuid_command = '%s %s' % (
273273
self.dsymForUUIDBinary, uuid_str)
@@ -317,7 +317,7 @@ def locate_module_and_debug_symbols(self):
317317
pass
318318
if (self.resolved_path and os.path.exists(self.resolved_path)) or (
319319
self.path and os.path.exists(self.path)):
320-
print('ok')
320+
print('Resolved symbols for %s %s...\n' % (uuid_str, self.path), end=' ')
321321
return True
322322
else:
323323
self.unavailable = True

0 commit comments

Comments
 (0)