mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2025-05-05 07:22:54 +03:00
Pull request 2242: 7079-log-enabled
Updates #7079.
Squashed commit of the following:
commit 477c5ed29c8066dc9cb175809572f613b2a0dfa0
Merge: d3c64e03a 647214092
Author: Stanislav Chzhen <s.chzhen@adguard.com>
Date: Thu Jun 20 19:31:54 2024 +0300
Merge branch 'master' into 7079-log-enabled
commit d3c64e03a514e39d70e6b79209be1f8cf052a25d
Author: Stanislav Chzhen <s.chzhen@adguard.com>
Date: Thu Jun 20 16:02:42 2024 +0300
home: imp docs
commit 7658c9b107f109c391b6bd5407098e8e53754842
Author: Stanislav Chzhen <s.chzhen@adguard.com>
Date: Thu Jun 20 14:17:08 2024 +0300
all: log enabled
This commit is contained in:
parent
6472140920
commit
65b7d232ab
3 changed files with 25 additions and 4 deletions
internal/home
|
@ -32,6 +32,9 @@ const dataDir = "data"
|
|||
|
||||
// logSettings are the logging settings part of the configuration file.
|
||||
type logSettings struct {
|
||||
// Enabled indicates whether logging is enabled.
|
||||
Enabled bool `yaml:"enabled"`
|
||||
|
||||
// File is the path to the log file. If empty, logs are written to stdout.
|
||||
// If "syslog", logs are written to syslog.
|
||||
File string `yaml:"file"`
|
||||
|
@ -454,11 +457,14 @@ var config = &configuration{
|
|||
},
|
||||
},
|
||||
Log: logSettings{
|
||||
Compress: false,
|
||||
LocalTime: false,
|
||||
Enabled: true,
|
||||
File: "",
|
||||
MaxBackups: 0,
|
||||
MaxSize: 100,
|
||||
MaxAge: 3,
|
||||
Compress: false,
|
||||
LocalTime: false,
|
||||
Verbose: false,
|
||||
},
|
||||
OSConfig: &osConfig{},
|
||||
SchemaVersion: configmigrate.LastSchemaVersion,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue