Table of Contents

Interface ILogger.IManagedInterface

Namespace
SampSharp.OpenMp.Core.Api
Assembly
SampSharp.OpenMp.Core.dll

Represents the managed interface implemented by its unmanaged counterpart.

public interface ILogger.IManagedInterface : IUnmanagedInterface
Inherited Members

Methods

LogLine(LogLevel, string)

Logs a new line to the console with the specified severity level.

void LogLine(LogLevel level, string msg)

Parameters

level LogLevel

The severity level at which to log the line.

msg string

The message to log.

LogLn(LogLevel, byte*)

Prints a new line to the console with the specified severity level.

void LogLn(LogLevel level, byte* msg)

Parameters

level LogLevel

The severity level at which to log the line.

msg byte*

The message to log.

LogLnU8(LogLevel, byte*)

Prints a new line to the console of the specified log type in UTF-8 encoding.

void LogLnU8(LogLevel level, byte* msg)

Parameters

level LogLevel

The severity level at which to log the line.

msg byte*

The message to log.

PrintLine(string)

Prints a new line to the console.

void PrintLine(string msg)

Parameters

msg string

The message to log.

PrintLn(byte*)

Prints a new line to the console.

void PrintLn(byte* msg)

Parameters

msg byte*

The message to log.

PrintLnU8(byte*)

Prints a new line to the console in UTF-8 encoding.

void PrintLnU8(byte* msg)

Parameters

msg byte*

The message to log.