# HG changeset patch
# User Kim Alvefur <zash@zash.se>
# Date 1490715115 -7200
# Node ID ff3787033abbff2204dfd8b37d893dac8a278591
# Parent  72cfbe3773268d72ffeaa0dc92ce8fcfb0d91689
util.datamanager: Log where the error came from

diff -r 72cfbe377326 -r ff3787033abb util/datamanager.lua
--- 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;