You need to sign in to do that
Don't have an account?

Maximum stack depth reached
One of my users received this error message. I believe it relates to the amount of logging going on in our implementation. can anybody confirm? I can't find reference to this in SF documentation
According to the docs:
Total stack depth for any Apex invocation that recursively fires triggers due to insert, update, or delete statements is 16.
Sounds like triggers may be the area to look into.
All Answers
This isn't to do with logging, rather its a governor limit that has been broken.
The stack is used to hold method call and parameter information.
This normally means you've got something in a recursive loop of method calls.
According to the docs:
Total stack depth for any Apex invocation that recursively fires triggers due to insert, update, or delete statements is 16.
Sounds like triggers may be the area to look into.
I doubt it will have changed outside of a new version of the platform, and Spring '10 isn't scheduled for sandboxes until this weekend.
You most likely just got lucky and went over a tipping point.