Class LoggingConfig
- Namespace
- FishMMO.Logging
- Assembly
- FishMMO-Logger.dll
Overall logging configuration, bundling individual logger configs dynamically. This is where you configure which loggers are active and their specific settings.
public class LoggingConfig
- Inheritance
-
LoggingConfig
- Inherited Members
Properties
Loggers
A list of configurations for various ILogger implementations. This allows for adding new logger types without modifying LoggingConfig itself.
public List<ILoggerConfig> Loggers { get; set; }
Property Value
LoggingManager
Configuration specific to the LoggingManager itself (e.g., console output levels).
public LoggingManagerConfig LoggingManager { get; set; }