Table of Contents

Class InitApp

Namespace
SunamoLogging
Assembly
SunamoLogging.dll

Application initialization helper for setting up loggers.

public class InitApp
Inheritance
InitApp
Inherited Members
Extension Methods

Properties

Logger

Gets or sets the base logger instance. Must be set during application initialization.

public static ILoggerBase? Logger { get; set; }

Property Value

ILoggerBase

TemplateLogger

Gets or sets the template logger instance. Must be set during application initialization.

public static TemplateLoggerBase? TemplateLogger { get; set; }

Property Value

TemplateLoggerBase

TypedLogger

Gets or sets the typed logger instance. Must be set during application initialization.

public static TypedLoggerBase? TypedLogger { get; set; }

Property Value

TypedLoggerBase

Methods

SetDebugLogger()

Sets up debug loggers for the application. Alternatives are: InitApp.SetDebugLogger CmdApp.SetLogger WpfApp.SetLogger

public static void SetDebugLogger()