aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_storage_internal.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2019-03-22 02:24:48 +0100
committerKim Alvefur <zash@zash.se>2019-03-22 02:24:48 +0100
commit5bb703f07f52906b1280daaac164a3886f09a373 (patch)
tree9ff4efbdc3d86dd06ae8b124da5b557fb2125b2f /plugins/mod_storage_internal.lua
parent2fed4a88c282ca6aa62d9641f3360a021ec0cebe (diff)
downloadprosody-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.lua2
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;