Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
@12bitfloat you bet. Today I was going crazy why I cannot ctrl + F a value in the logs. Spent 30 minutes to realise that it is being trimmed out.
And, it’s not that they trim the tail of the log. They just shorten parts of log lines.
So, you do
System.debug(someObject);
You get this in the log:
…|someObject|{name: “John Living…(10 more)”}
The full value isn’t there. (10 more) implies there were 10 more characters that were trimmed. -
This is Salesforce right?
If so then this is the least of your worries. The platform is horrific. Get out now if you can....
Ah thank you for understanding.
PS: I respect people answering on StackOverflow - really helps, even though I don't like the answer itself.
random