log: Correctly handle 'log off' + add missing \n

This commit is contained in:
fox.cpp 2019-04-07 00:28:50 +03:00 committed by Simon Ser
parent 2ae192e12d
commit 741c997fdb
3 changed files with 7 additions and 3 deletions

View file

@ -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 {