Changeset

13567:515ac7e8ae6d

util.datamanager: fix duplicated word in log message
author Jonas Schäfer <jonas@wielicki.name>
date Sat, 16 Nov 2024 09:20:29 +0100
parents 13566:2fb4ce131131
children 13568:3615590fd9ed
files util/datamanager.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/util/datamanager.lua	Sat Nov 16 09:12:11 2024 +0100
+++ b/util/datamanager.lua	Sat Nov 16 09:20:29 2024 +0100
@@ -509,7 +509,7 @@
 
 local function list_open(username, host, datastore)
 	if not index_magic then
-		log("debug", "Falling back from lazy loading to to loading full list for %s storage for user: %s@%s", datastore, username or "nil", host or "nil");
+		log("debug", "Falling back from lazy loading to loading full list for %s storage for user: %s@%s", datastore, username or "nil", host or "nil");
 		return list_load(username, host, datastore);
 	end
 	local filename = getpath(username, host, datastore, "list");