ILogger

AUTO-GENERATED FILE – DO NOT EDIT MANUALLY

This page documents the supported public API surface only. Private, internal, benchmark, test, and implementation-detail types are intentionally omitted.

Declaration

1
public interface ILogger

Metadata

Namespace: GridPlacement.Core.Interfaces

Source File: cs/Core/Interfaces/ILogger.cs

Assembly: GridPlacement.Core

Type: interface

Properties

LogLevel

1
public abstract LogLevel LogLevel { get; set; }

Methods

Log

1
2
3
4
void Log(
    GridPlacement.Core.Logging.LogLevel level,
    string message
)

LogDebug

1
void LogDebug(string message)

LogDebug

1
2
3
4
void LogDebug(
    string message,
    object context
)

LogInfo

1
void LogInfo(string message)

LogInfo

1
2
3
4
void LogInfo(
    string message,
    object context
)

LogWarning

1
void LogWarning(string message)

LogWarning

1
2
3
4
void LogWarning(
    string message,
    object context
)

LogError

1
void LogError(string message)

LogError

1
2
3
4
void LogError(
    string message,
    object context
)