Show / Hide Table of Contents

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 Source

Debug(String)

Writes debug log message.

Declaration
void Debug(string message)
Parameters
Type Name Description
System.String message

The message.

| Improve this Doc View Source

Error(Exception)

Writes error log message.

Declaration
void Error(Exception exception)
Parameters
Type Name Description
System.Exception exception

The exception.

| Improve this Doc View Source

Error(String)

Writes error log message.

Declaration
void Error(string message)
Parameters
Type Name Description
System.String message

The message.

| Improve this Doc View Source

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.

| Improve this Doc View Source

Fatal(Exception)

Writes fatal log message.

Declaration
void Fatal(Exception exception)
Parameters
Type Name Description
System.Exception exception

The exception.

| Improve this Doc View Source

Fatal(String)

Writes fatal log message.

Declaration
void Fatal(string message)
Parameters
Type Name Description
System.String message

The message.

| Improve this Doc View Source

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.

| Improve this Doc View Source

Info(String)

Writes informational log message.

Declaration
void Info(string message)
Parameters
Type Name Description
System.String message

The message.

| Improve this Doc View Source

Trace(String)

Writes trace log message.

Declaration
void Trace(string message)
Parameters
Type Name Description
System.String message

The message.

| Improve this Doc View Source

Warn(Exception)

Writes warning log message.

Declaration
void Warn(Exception exception)
Parameters
Type Name Description
System.Exception exception

The exception.

| Improve this Doc View Source

Warn(String)

Writes warning log message.

Declaration
void Warn(string message)
Parameters
Type Name Description
System.String message

The message.

| Improve this Doc View Source

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.

  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX