You can add result comments to a test script to provide supplemental information about the test. During the execution of the test, the result comments are added to the TrueLog file of the test.
'VB .NET code Agent.LogInfo("This is a comment!") Agent.LogWarning("This is a warning!") Agent.LogError("This is an error!")
// C# code Agent.LogInfo("This is a comment!"); Agent.LogWarning("This is a warning!"); Agent.LogError("This is an error!");