Some hours of testing and searching the web took me a step closer to the problem.
Circles is not working properly (no “Contact” app installed).
Disabling circles solved the issue.
Hope it will be fixed with #35970
nextcloud:master
← nextcloud:perf/noid/exception-serializer
opened 06:04PM - 03 Jan 23 UTC
## Summary
Small improvement to not start serializing an exception during log… ging if the log level would skip it anyways. Noticed when seeing errors due to `Nesting level too deep - recursive dependency? at /var/www/html/lib/private/Log/ExceptionSerializer.php#215` while there was no actual error logged when commenting out the argument cleanup
The second commit avoids such cases by handling the arguments first (which limits to a recursion depth of 5) before iterating over them for filtering for sensitive parameters.
## Checklist
- Code is [properly formatted](https://docs.nextcloud.com/server/latest/developer_manual/digging_deeper/continuous_integration.html#linting)
- [Sign-off message](https://github.com/src-d/guide/blob/master/developer-community/fix-DCO.md) is added to all commits
- [x] Tests ([unit](https://docs.nextcloud.com/server/latest/developer_manual/app_development/tutorial.html#unit-tests), [integration](https://docs.nextcloud.com/server/latest/developer_manual/app_development/tutorial.html#integration-tests), api and/or acceptance) are included
- [x] Screenshots before/after for front-end changes
- [x] Documentation ([manuals](https://github.com/nextcloud/documentation/) or wiki) has been updated or is not required
- [x] [Backports requested](https://github.com/nextcloud/backportbot/#usage) where applicable (ex: critical bugfixes)