mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-03 21:27:35 +03:00
log: Correctly handle 'log off' + add missing \n
This commit is contained in:
parent
2ae192e12d
commit
741c997fdb
3 changed files with 7 additions and 3 deletions
|
@ -142,7 +142,10 @@ func logOutput(m *config.Map, node *config.Node) (interface{}, error) {
|
|||
}
|
||||
outs = append(outs, syslogOut)
|
||||
case "off":
|
||||
outs = append(outs, nil)
|
||||
if len(node.Args) != 1 {
|
||||
return nil, errors.New("'off' can't be combined with other log targets")
|
||||
}
|
||||
return nil, nil
|
||||
default:
|
||||
w, err := os.OpenFile(arg, os.O_RDWR, os.ModePerm)
|
||||
if err != nil {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue