gears.debug: Print plain non-table values in dump_raw
dump_raw function wasn't printing the plain (non-table) value if the tag was not specified. Signed-off-by: Alexander Yakushev <yakushev.alex@gmail.com> Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
parent
f7aa4b5969
commit
394bacacea
|
@ -35,11 +35,11 @@ local function dump_raw(data, shift, tag)
|
||||||
local result = ""
|
local result = ""
|
||||||
|
|
||||||
if tag then
|
if tag then
|
||||||
result = result .. tostring(tag) .. " : " .. tostring(data)
|
result = result .. tostring(tag) .. " : "
|
||||||
end
|
end
|
||||||
|
|
||||||
if type(data) ~= "table" then
|
if type(data) ~= "table" then
|
||||||
return result .. " (" .. type(data) .. ")"
|
return result .. tostring(data) .. " (" .. type(data) .. ")"
|
||||||
end
|
end
|
||||||
|
|
||||||
shift = (shift or "") .. " "
|
shift = (shift or "") .. " "
|
||||||
|
|
Loading…
Reference in New Issue