From 0f578fb9f3e81bfd847785562900adc3c47740d9 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Tue, 28 Mar 2017 17:31:55 +0200 Subject: util.datamanager: Log where the error came from --- util/datamanager.lua | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'util/datamanager.lua') diff --git a/util/datamanager.lua b/util/datamanager.lua index 2ed672e5..6edf7ac0 100644 --- a/util/datamanager.lua +++ b/util/datamanager.lua @@ -240,7 +240,7 @@ local function append(username, host, datastore, ext, data) ok, msg = f:close(); if not ok then - return ok, msg; + return ok, msg, "close"; end return true, pos; @@ -252,9 +252,10 @@ local function list_append(username, host, datastore, data) -- 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; -- cgit v1.2.3