Use Realm.string_id instead of Realm.domain when logging.

This commit is contained in:
Rishi Gupta
2017-03-13 09:42:14 -07:00
parent 00f49d4121
commit 5dc683ba8d
2 changed files with 3 additions and 3 deletions

View File

@@ -1067,7 +1067,7 @@ def do_export_realm(realm, output_dir, threads, exportable_user_ids=None):
# Start parallel jobs to export the UserMessage objects.
launch_user_message_subprocesses(threads=threads, output_dir=output_dir)
logging.info("Finished exporting %s" % (realm.domain))
logging.info("Finished exporting %s" % (realm.string_id))
create_soft_link(source=output_dir, in_progress=False)
def export_attachment_table(realm, output_dir, message_ids):