Table of Contents

Interface ILogger

Namespace
NUnit.Framework.Internal
Assembly
nunit.framework.dll

Interface for logging within the engine

public interface ILogger

Methods

Debug(string)

Logs the specified message at the debug level.

void Debug(string message)

Parameters

message string

The message.

Debug(string, params object[])

Logs the specified message at the debug level.

void Debug(string message, params object[] args)

Parameters

message string

The message.

args object[]

The arguments.

Error(string)

Logs the specified message at the error level.

void Error(string message)

Parameters

message string

The message.

Error(string, params object[])

Logs the specified message at the error level.

void Error(string message, params object[] args)

Parameters

message string

The message.

args object[]

The arguments.

Info(string)

Logs the specified message at the info level.

void Info(string message)

Parameters

message string

The message.

Info(string, params object[])

Logs the specified message at the info level.

void Info(string message, params object[] args)

Parameters

message string

The message.

args object[]

The arguments.

Warning(string)

Logs the specified message at the warning level.

void Warning(string message)

Parameters

message string

The message.

Warning(string, params object[])

Logs the specified message at the warning level.

void Warning(string message, params object[] args)

Parameters

message string

The message.

args object[]

The arguments.