Hi,
I'm running into an issue where making a request to the `team_log` endpoint succeeds if I specify a limit of 1 or 2 and no categories, but if I specify a limit of 3 or higher I get a 500.
Successful request:
```
curl -vvv -X POST https://api.dropboxapi.com/2/team_log/get_events \
--header "Authorization: Bearer <SNIPPED>" \
--header "Content-Type: application/json" \
--data "{\"limit\": 1}"
```
Failing request:
```
curl -vvv -X POST https://api.dropboxapi.com/2/team_log/get_events \
--header "Authorization: Bearer <SNIPPED>" \
--header "Content-Type: application/json" \
--data "{\"limit\": 3}"
```
(a sample x-dropbox-request-id is 818508708152d804ef19f4dac7f6017a)
Is this a known issue?