Shared/debug.lua

-- | # You can get help from our document: https://thug.gitbook.io/documentation

Debug = function(Debug_Text, Debug_Type)
    if not Config.Settings['Debug'] then return end
     print("^4thug-crafting ^7| "..Debug_Type..' ^7| '..Debug_Text)
end

Config.Debug_Settings = {
    ['Error'] = '^1Error',
    ['Warn'] = '^3Warning',
    ['Info'] = '^2Info',
    ['Debug'] = '^6Debug',
}

Last updated