mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.sql: Log when transactions begin
This commit is contained in:
parent
e92f6bc9c1
commit
90f5cf4cc1
1 changed files with 1 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue