mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +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
|
@ -87,7 +87,8 @@ These can be specified only outside of any configuration block.
|
||||||
* `syslog`
|
* `syslog`
|
||||||
Send logs to the local syslog daemon.
|
Send logs to the local syslog daemon.
|
||||||
* `off`
|
* `off`
|
||||||
Do nothing. Useful to disable logging fully: `log off`
|
Do nothing. Used to disable logging fully: `log off`
|
||||||
|
Can't be combined with other targets.
|
||||||
* file path
|
* file path
|
||||||
Write (append) logs to file..
|
Write (append) logs to file..
|
||||||
|
|
||||||
|
|
|
@ -142,7 +142,10 @@ func logOutput(m *config.Map, node *config.Node) (interface{}, error) {
|
||||||
}
|
}
|
||||||
outs = append(outs, syslogOut)
|
outs = append(outs, syslogOut)
|
||||||
case "off":
|
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:
|
default:
|
||||||
w, err := os.OpenFile(arg, os.O_RDWR, os.ModePerm)
|
w, err := os.OpenFile(arg, os.O_RDWR, os.ModePerm)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
|
@ -105,7 +105,7 @@ func Syslog() (FuncLog, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Fprintf(os.Stderr, "!!! Failed to send message to syslog daemon: %v", err)
|
fmt.Fprintf(os.Stderr, "!!! Failed to send message to syslog daemon: %v\n", err)
|
||||||
}
|
}
|
||||||
}, nil
|
}, nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue