44 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
local function tPrint(tbl, indent)
 | 
						|
    indent = indent or 0
 | 
						|
    if type(tbl) == 'table' then
 | 
						|
        for k, v in pairs(tbl) do
 | 
						|
            local tblType = type(v)
 | 
						|
            local formatting = ('%s ^3%s:^0'):format(string.rep('  ', indent), k)
 | 
						|
 | 
						|
            if tblType == 'table' then
 | 
						|
                print(formatting)
 | 
						|
                tPrint(v, indent + 1)
 | 
						|
            elseif tblType == 'boolean' then
 | 
						|
                print(('%s^1 %s ^0'):format(formatting, v))
 | 
						|
            elseif tblType == 'function' then
 | 
						|
                print(('%s^9 %s ^0'):format(formatting, v))
 | 
						|
            elseif tblType == 'number' then
 | 
						|
                print(('%s^5 %s ^0'):format(formatting, v))
 | 
						|
            elseif tblType == 'string' then
 | 
						|
                print(("%s ^2'%s' ^0"):format(formatting, v))
 | 
						|
            else
 | 
						|
                print(('%s^2 %s ^0'):format(formatting, v))
 | 
						|
            end
 | 
						|
        end
 | 
						|
    else
 | 
						|
        print(('%s ^0%s'):format(string.rep('  ', indent), tbl))
 | 
						|
    end
 | 
						|
end
 | 
						|
 | 
						|
RegisterServerEvent('QBCore:DebugSomething', function(tbl, indent, resource)
 | 
						|
    print(('\x1b[4m\x1b[36m[ %s : DEBUG]\x1b[0m'):format(resource))
 | 
						|
    tPrint(tbl, indent)
 | 
						|
    print('\x1b[4m\x1b[36m[ END DEBUG ]\x1b[0m')
 | 
						|
end)
 | 
						|
 | 
						|
function QBCore.Debug(tbl, indent)
 | 
						|
    TriggerEvent('QBCore:DebugSomething', tbl, indent, GetInvokingResource() or 'qb-core')
 | 
						|
end
 | 
						|
 | 
						|
function QBCore.ShowError(resource, msg)
 | 
						|
    print('\x1b[31m[' .. resource .. ':ERROR]\x1b[0m ' .. msg)
 | 
						|
end
 | 
						|
 | 
						|
function QBCore.ShowSuccess(resource, msg)
 | 
						|
    print('\x1b[32m[' .. resource .. ':LOG]\x1b[0m ' .. msg)
 | 
						|
end
 |