# HG changeset patch
# User Kim Alvefur <zash@zash.se>
# Date 1603635694 -3600
# Node ID 76e135fbca0fd63172d1156a6d119b071f320c69
# Parent  15fe9f0bb48331246d37c72ddc876719eb6fb89d
mod_pubsub: Clarify kind of item store created

Planning to make this configurable, so good to distinguish it from
future backends.

diff -r 15fe9f0bb483 -r 76e135fbca0f plugins/mod_pubsub/pubsub.lib.lua
--- a/plugins/mod_pubsub/pubsub.lib.lua	Sun Oct 25 15:20:14 2020 +0100
+++ b/plugins/mod_pubsub/pubsub.lib.lua	Sun Oct 25 15:21:34 2020 +0100
@@ -796,7 +796,7 @@
 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