Class LogEventInfo
Represents the logging event information raised by Atata framework.
Inheritance
System.Object
LogEventInfo
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Relativity.Testing.Framework.Logging
Assembly: Relativity.Testing.Framework.dll
Syntax
public class LogEventInfo
Properties
| Improve this Doc View SourceException
Gets the exception information.
Declaration
public Exception Exception { get; }
Property Value
Type | Description |
---|---|
System.Exception |
Level
Gets the level of the logging event.
Declaration
public LogLevel Level { get; }
Property Value
Type | Description |
---|---|
LogLevel |
Message
Gets the log message.
Declaration
public string Message { get; }
Property Value
Type | Description |
---|---|
System.String |
TestFixtureName
Gets the name of the test fixture.
Declaration
public string TestFixtureName { get; }
Property Value
Type | Description |
---|---|
System.String |
TestFixtureNameSanitized
Gets the name of the test fixture sanitized for file path/name.
Declaration
public string TestFixtureNameSanitized { get; }
Property Value
Type | Description |
---|---|
System.String |
TestName
Gets the name of the test.
Declaration
public string TestName { get; }
Property Value
Type | Description |
---|---|
System.String |
TestNameSanitized
Gets the name of the test sanitized for file path/name.
Declaration
public string TestNameSanitized { get; }
Property Value
Type | Description |
---|---|
System.String |
Timestamp
Gets the timestamp of the logging event.
Declaration
public DateTime Timestamp { get; }
Property Value
Type | Description |
---|---|
System.DateTime |