Table of Contents
DiagnosticTools.StartDiagnosticLog Method 

Start to capture detailed diagnostic logs.

Syntax
 public static void StartDiagnosticLog(
   string name = null
);

Parameters

name
An optional string value that can be used to identify your log.
Remarks

Use this method to capture detailed diagnostic logs that may help troubleshoot hard to reproduce problems. Please note:

  • Only call this method when requested by Essential Objects support as it can negatively impact performance;
  • You should call this method as early as possible as logs from child processes will not be captured unless this method is called before the child process is created;
  • It is recommended that you call StopAndSaveDiagnosticLog to submit or save the result as soon as the problem occurs so that the log contents would be more relevant to the problem;
See Also