Made core.log/error store call location instead of view
This commit is contained in:
parent
59881f81a6
commit
9a32a00c73
|
@ -231,8 +231,9 @@ local function log(icon, icon_color, fmt, ...)
|
|||
core.status_view:show_message(icon, icon_color, text)
|
||||
end
|
||||
|
||||
local view = core.active_view and core.active_view:get_name()
|
||||
local item = { text = text, time = os.time(), view = view }
|
||||
local info = debug.getinfo(2, "Sl")
|
||||
local at = string.format("%s:%d", info.short_src, info.currentline)
|
||||
local item = { text = text, time = os.time(), at = at }
|
||||
table.insert(core.log_items, item)
|
||||
if #core.log_items > config.max_log_items then
|
||||
table.remove(core.log_items, 1)
|
||||
|
|
|
@ -51,7 +51,7 @@ function LogView:draw()
|
|||
x = x + style.padding.x
|
||||
local subx = x
|
||||
x = renderer.draw_text(style.font, item.text, x, y, style.text)
|
||||
x = renderer.draw_text(style.font, " in " .. item.view, x, y, style.dim)
|
||||
x = renderer.draw_text(style.font, " at " .. item.at, x, y, style.dim)
|
||||
y = y + th
|
||||
if item.info then
|
||||
for line in item.info:gmatch("[^\n]+") do
|
||||
|
|
Loading…
Reference in New Issue