aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2023-07-10 17:52:52 +0200
committerKim Alvefur <zash@zash.se>2023-07-10 17:52:52 +0200
commit96bc5fd439dfbb12f364b1d4950684eef9a98a73 (patch)
treec5433c357072946a3bb55ea17a422762a8e0b7b5 /util
parent2b56e0473a565bc286376784e3f70c1688fad1cf (diff)
downloadprosody-96bc5fd439dfbb12f364b1d4950684eef9a98a73.tar.gz
prosody-96bc5fd439dfbb12f364b1d4950684eef9a98a73.zip
util.datamanager: Fix missing separator in log line
Diffstat (limited to 'util')
-rw-r--r--util/datamanager.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/datamanager.lua b/util/datamanager.lua
index 36e9b39d..b15cd6d4 100644
--- a/util/datamanager.lua
+++ b/util/datamanager.lua
@@ -397,7 +397,7 @@ local index_mt = {
}
local function get_list_index(username, host, datastore)
- log("debug", "Loading index for (%s%s/%s)", username, host, datastore);
+ log("debug", "Loading index for (%s@%s/%s)", username, host, datastore);
local index_filename = getpath(username, host, datastore, "lidx");
local ih = io_open(index_filename);
if ih then