util.sql: Log when transactions begin

This commit is contained in:
Kim Alvefur 2015-08-30 13:45:36 +02:00
parent e92f6bc9c1
commit 90f5cf4cc1

View file

@ -180,6 +180,7 @@ function engine:_transaction(func, ...)
--assert(not self.__transaction, "Recursive transactions not allowed");
local args, n_args = {...}, select("#", ...);
local function f() return func(unpack(args, 1, n_args)); end
log("debug", "SQL transaction begin [%s]", tostring(func));
self.__transaction = true;
local success, a, b, c = xpcall(f, debug_traceback);
self.__transaction = nil;