util/datamanager.lua
changeset 8017 ff3787033abb
parent 8016 72cfbe377326
child 8095 0a1c0f1107d2
--- a/util/datamanager.lua	Tue Mar 28 17:31:24 2017 +0200
+++ b/util/datamanager.lua	Tue Mar 28 17:31:55 2017 +0200
@@ -240,7 +240,7 @@
 
 	ok, msg = f:close();
 	if not ok then
-		return ok, msg;
+		return ok, msg, "close";
 	end
 
 	return true, pos;
@@ -252,9 +252,10 @@
 	-- save the datastore
 
 	data = "item(" ..  serialize(data) .. ");\n";
-	local ok, msg = append(username, host, datastore, "list", data);
+	local ok, msg, where = append(username, host, datastore, "list", data);
 	if not ok then
-		log("error", "Unable to write to %s storage ('%s') for user: %s@%s", datastore, msg, username or "nil", host or "nil");
+		log("error", "Unable to write to %s storage ('%s' in %s) for user: %s@%s",
+			datastore, msg, where, username or "nil", host or "nil");
 		return ok, msg;
 	end
 	return true;