Skip to content
Snippets Groups Projects
Commit 89bc809c authored by Konstantin Osipov's avatar Konstantin Osipov
Browse files

Merge branch 'master' of github.com:tarantool/tarantool

parents 94072250 52a573eb
No related branches found
No related tags found
No related merge requests found
......@@ -20,16 +20,7 @@ ffi.cdef[[
]]
local function say(level, fmt, ...)
local str
args = { ... }
if not pcall(function() str = string.format(fmt, unpack(args)) end) then
str = fmt .. ' ['
for i = 1, select('#', ...) do
str = str .. select(i, ...) .. ', '
end
str = str .. ']'
end
local str = string.format(fmt, ...)
local frame = debug.getinfo(3, "Sl")
local line = 0
local file = 'eval'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment