The StressLog feature is provided by CLR itself, it is a trace of what CLR did and mostly used by CLR development group members, so it is difficult to find related documents.
For the sentence "To make sense of this log, you would probably want the Shared Source CLI to find out exactly where the log comes from.", it means that we can find out which CLR method has been executed by searching an log item in Rotor. for example, method FinishEntry() in file debug\ee\Thread.cs has its implementation like:
// Queue, possibly send this entry to the RS.
// Move to the next entry.
HRESULT FinishEntry()
{
...
STRESS_LOG0(LF_CORDB, LL_INFO1000, "RSFD::FE - 1st and 2nd pass differ.\n");
...
}
if we find "RSFD::FE - 1st and 2nd pass differ." in the StressLog file, we can make sure that this method has been executed.
Thanks,
Eric
Please remember to mark helpful replies as answers and unmark them if they provide no help.