diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2019-09-24 14:39:07 +0100 |
---|---|---|
committer | Brendan Abolivier <babolivier@matrix.org> | 2019-09-24 14:39:07 +0100 |
commit | f02f14e09a9f4ce703fa1091ad40c64957811736 (patch) | |
tree | a7b7931c987270ad5fac65e3e1eb4b227b63fdbe /synapse/storage/background_updates.py | |
parent | Typo (diff) | |
download | synapse-f02f14e09a9f4ce703fa1091ad40c64957811736.tar.xz |
Fix logging
Diffstat (limited to 'synapse/storage/background_updates.py')
-rw-r--r-- | synapse/storage/background_updates.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/background_updates.py b/synapse/storage/background_updates.py index e5f0668f09..9522acd972 100644 --- a/synapse/storage/background_updates.py +++ b/synapse/storage/background_updates.py @@ -218,7 +218,7 @@ class BackgroundUpdateStore(SQLBaseStore): duration_ms = time_stop - time_start logger.info( - "Updating %r. Updated %r items in %rms." + "Running background update %r. Processed %r items in %rms." " (total_rate=%r/ms, current_rate=%r/ms, total_updated=%r, batch_size=%r)", update_name, items_updated, |