diff options
author | Erik Johnston <erik@matrix.org> | 2015-02-09 15:00:37 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-02-09 15:00:37 +0000 |
commit | c4ee4ce93ec6075bc076b12520fd72769079f37c (patch) | |
tree | 69b54bf4b3fcd06beee1261ee69fc0be85238c4e /synapse | |
parent | Add looping_call to Clock (diff) | |
download | synapse-c4ee4ce93ec6075bc076b12520fd72769079f37c.tar.xz |
Fix typo
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/storage/_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/_base.py b/synapse/storage/_base.py index f1df5d39fd..310ee0104c 100644 --- a/synapse/storage/_base.py +++ b/synapse/storage/_base.py @@ -103,7 +103,7 @@ class SQLBaseStore(object): ratio = (curr - prev)/(time_now - time_then) - logger.info("Total database time: %.3f%", ratio * 100) + logger.info("Total database time: %.3f%%", ratio * 100) self._clock.looping_call(loop, 10000) |