logging
Web Administration log file configuration. Logging is disabled by default — set a location to enable it.
These settings are separate from the SSH/SFTP server logs configured in config.yaml.
logging:
location: 'D:\burulogs'
minLevel: warning
aspNetMinLevel: warning
maxFileCount: 31 # keep ~1 monthlogging.location
string
Directory path where log files are written. If not set, logging is disabled. The Web Administration service account must have write permissions to the specified directory.
logging.minLevel
"verbose" | "debug" | "information" | "warning" | "error" | "fatal" = "warning"
Minimum log level. Events below this level are not written to the log. Values are ordered from least to most severe.
logging.aspNetMinLevel
"verbose" | "debug" | "information" | "warning" | "error" | "fatal" = "warning"
Minimum log level for ASP.NET Core internal events (e.g. HTTP request handling, middleware). These events are logged separately from the Web Administration's own log entries.
logging.maxFileCount
number = 31
Maximum number of log files to retain. Older files are deleted when the limit is reached. One file is created per day, so the default of 31 keeps approximately one month of logs.