diff options
author | Kim Alvefur <zash@zash.se> | 2020-10-25 15:21:34 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2020-10-25 15:21:34 +0100 |
commit | a4557022b781db85d91d348e5ea4f6420832b935 (patch) | |
tree | 9338d92b1b9b9651047440ab7823b852a476c1a2 | |
parent | dfcf61d6747203eedf295a8a0155719569b45756 (diff) | |
download | prosody-a4557022b781db85d91d348e5ea4f6420832b935.tar.gz prosody-a4557022b781db85d91d348e5ea4f6420832b935.zip |
mod_pubsub: Clarify kind of item store created
Planning to make this configurable, so good to distinguish it from
future backends.
-rw-r--r-- | plugins/mod_pubsub/pubsub.lib.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_pubsub/pubsub.lib.lua b/plugins/mod_pubsub/pubsub.lib.lua index 6a2c6ad9..c84208a2 100644 --- a/plugins/mod_pubsub/pubsub.lib.lua +++ b/plugins/mod_pubsub/pubsub.lib.lua @@ -796,7 +796,7 @@ local function create_encapsulating_item(id, payload) end local function archive_itemstore(archive, config, user, node) - module:log("debug", "Creation of itemstore for node %s with config %s", node, config); + module:log("debug", "Creation of archive itemstore for node %s with config %q", node, config); local get_set = {}; local max_items = config["max_items"]; function get_set:items() -- luacheck: ignore 212/self |