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

Signed-off-by: Med Ismail Bennani <medismail.bennani@gmail.com>
This commit is contained in:
Med Ismail Bennani 2022-03-10 11:06:42 -08:00
parent 6aa48034f9
commit deb359aab3
1 changed files with 2 additions and 2 deletions

View File

@ -267,7 +267,7 @@ class CrashLog(symbolication.Symbolicator):
self.resolved = True self.resolved = True
uuid_str = self.get_normalized_uuid_string() uuid_str = self.get_normalized_uuid_string()
if self.show_symbol_progress(): 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): if os.path.exists(self.dsymForUUIDBinary):
dsym_for_uuid_command = '%s %s' % ( dsym_for_uuid_command = '%s %s' % (
self.dsymForUUIDBinary, uuid_str) self.dsymForUUIDBinary, uuid_str)
@ -317,7 +317,7 @@ class CrashLog(symbolication.Symbolicator):
pass pass
if (self.resolved_path and os.path.exists(self.resolved_path)) or ( if (self.resolved_path and os.path.exists(self.resolved_path)) or (
self.path and os.path.exists(self.path)): self.path and os.path.exists(self.path)):
print('ok') print('Resolved symbols for %s %s...\n' % (uuid_str, self.path), end=' ')
return True return True
else: else:
self.unavailable = True self.unavailable = True