Table of Contents

Class Logger

Namespace
BotManager.Runtime
Assembly
BotManager.Runtime.dll

A simple logger class that writers to the std/err output.

public sealed class Logger
Inheritance
Logger
Inherited Members

Constructors

Logger()

public Logger()

Methods

Error(string, string)

Writes a message to the error output.

public void Error(string tag, string message)

Parameters

tag string

A log tag.

message string

The message.

Info(string, string)

Writes a message to the standard output.

public void Info(string tag, string message)

Parameters

tag string

A log tag.

message string

The message.