diff options
author | Kim Alvefur <zash@zash.se> | 2019-03-22 02:24:48 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-03-22 02:24:48 +0100 |
commit | 5bb703f07f52906b1280daaac164a3886f09a373 (patch) | |
tree | 9ff4efbdc3d86dd06ae8b124da5b557fb2125b2f /plugins/mod_storage_internal.lua | |
parent | 2fed4a88c282ca6aa62d9641f3360a021ec0cebe (diff) | |
download | prosody-5bb703f07f52906b1280daaac164a3886f09a373.tar.gz prosody-5bb703f07f52906b1280daaac164a3886f09a373.zip |
mod_storage_internal: Include store name when reporting quota status
Diffstat (limited to 'plugins/mod_storage_internal.lua')
-rw-r--r-- | plugins/mod_storage_internal.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_storage_internal.lua b/plugins/mod_storage_internal.lua index cb88f10f..c87d01be 100644 --- a/plugins/mod_storage_internal.lua +++ b/plugins/mod_storage_internal.lua @@ -109,7 +109,7 @@ function archive:append(username, key, value, when, with) key = id(); end - module:log("debug", "%s has %d items out of %d limit", username, item_count, archive_item_limit); + module:log("debug", "%s has %d items out of %d limit in store %s", username, item_count, archive_item_limit, self.store); value.key = key; |