mirror of
https://github.com/qbcore-fivem/qb-core.git
synced 2026-08-29 17:28:56 +00:00
easier file management
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
RegisterServerEvent('QBCore:DebugSomething')
|
||||
AddEventHandler('QBCore:DebugSomething', function(resource, obj, depth)
|
||||
print("\x1b[4m\x1b[36m["..resource..":DEBUG]\x1b[0m")
|
||||
if type(obj) == "string" then
|
||||
print(string.format("%q", obj))
|
||||
elseif type(obj) == "table" then
|
||||
local str = "{"
|
||||
for k, v in pairs(obj) do
|
||||
if type(v) == "table" then
|
||||
for ik, iv in pairs(v) do
|
||||
str = str.."\n["..k.."] -> ["..ik.."] -> "..tostring(iv)
|
||||
end
|
||||
else
|
||||
str = str.."\n["..k.."] -> "..tostring(v)
|
||||
end
|
||||
end
|
||||
|
||||
print(str.."\n}")
|
||||
else
|
||||
local success, value = pcall(function() return tostring(obj) end)
|
||||
print((success and value or "<!!error in __tostring metamethod!!>"))
|
||||
end
|
||||
print("\x1b[4m\x1b[36mEND OF DEBUG\x1b[0m")
|
||||
end)
|
||||
|
||||
QBCore.Debug = function(resource, obj, depth)
|
||||
TriggerEvent('QBCore:DebugSomething', resource, obj, depth)
|
||||
end
|
||||
|
||||
QBCore.ShowError = function(resource, msg)
|
||||
print("\x1b[31m["..resource..":ERROR]\x1b[0m "..msg)
|
||||
end
|
||||
|
||||
QBCore.ShowSuccess = function(resource, msg)
|
||||
print("\x1b[32m["..resource..":LOG]\x1b[0m "..msg)
|
||||
end
|
||||
Reference in New Issue
Block a user