Interface ILogService
Represents the logging service.
Namespace: Relativity.Testing.Framework.Logging
Assembly: Relativity.Testing.Framework.dll
Syntax
public interface ILogService
Methods
| Improve this Doc View SourceDebug(String)
Writes debug log message.
Declaration
void Debug(string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | The message. |
Error(Exception)
Writes error log message.
Declaration
void Error(Exception exception)
Parameters
Type | Name | Description |
---|---|---|
System.Exception | exception | The exception. |
Error(String)
Writes error log message.
Declaration
void Error(string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | The message. |
Error(String, Exception)
Writes error log message.
Declaration
void Error(string message, Exception exception)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | The message. |
System.Exception | exception | The exception. |
Fatal(Exception)
Writes fatal log message.
Declaration
void Fatal(Exception exception)
Parameters
Type | Name | Description |
---|---|---|
System.Exception | exception | The exception. |
Fatal(String)
Writes fatal log message.
Declaration
void Fatal(string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | The message. |
Fatal(String, Exception)
Writes fatal log message.
Declaration
void Fatal(string message, Exception exception)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | The message. |
System.Exception | exception | The exception. |
Info(String)
Writes informational log message.
Declaration
void Info(string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | The message. |
Trace(String)
Writes trace log message.
Declaration
void Trace(string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | The message. |
Warn(Exception)
Writes warning log message.
Declaration
void Warn(Exception exception)
Parameters
Type | Name | Description |
---|---|---|
System.Exception | exception | The exception. |
Warn(String)
Writes warning log message.
Declaration
void Warn(string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | The message. |
Warn(String, Exception)
Writes warning log message.
Declaration
void Warn(string message, Exception exception)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | The message. |
System.Exception | exception | The exception. |