27.03.2023, 05:28
Each log entry is limited to 8KB. You can decode the JSON string and log each entry separately:
Code:
data = require('json').decode(response)
for key, value in pairs(data) do
log(key, value)
end