Struct LoggerConfig

Define options to configure a Logger Loosely inspired from ocean.utils.log.Config

struct LoggerConfig ;

Fields

NameTypeDescription
additive boolWhether this logger should be additive or not
buffer_size ulongBuffer size of the buffer output
console boolWhether to use console output or not
file stringWhether to use file output and if, which file path
level dtext.log.ILogger.ILogger.LevelLevel to set the logger to (messages at a lower level won't be printed)
name stringName of the logger to configure
propagate boolWhether to propagate that level to the children Default to true as this is the expected behavior for most users