Logs
Edit rcore_dealership/configs/config.logs.lua to send events to Discord through webhooks.
๐ช Discord Webhooks
Config.Logs.Discord.Enabled = trueConfig.Logs.Discord.Webhooks maps each log type to a webhook URL. It is empty by default - add a URL for each log type you want to receive.
Do not change the structure of this file. To disable a single log type, set its url to an empty string ('') instead of removing the entry.
Each entry looks like:
Config.Logs.Discord.Webhooks = {
[Logs.SOME_EVENT] = { url = 'https://discord.com/api/webhooks/...' },
}Last updated