mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-03 21:27:35 +03:00
Fix panic on startup with 'log off'
This commit is contained in:
parent
b6e5ba7876
commit
08e6219013
2 changed files with 7 additions and 1 deletions
|
@ -51,7 +51,7 @@ func LogOutputOption(args []string) (log.Output, error) {
|
|||
if len(args) != 1 {
|
||||
return nil, errors.New("'off' can't be combined with other log targets")
|
||||
}
|
||||
return nil, nil
|
||||
return log.NopOutput{}, nil
|
||||
default:
|
||||
// Log file paths are converted to absolute to make sure
|
||||
// we will be able to recreate them in right location
|
||||
|
|
|
@ -48,3 +48,9 @@ func (f funcOut) Close() error {
|
|||
func FuncOutput(f func(time.Time, bool, string), close func() error) Output {
|
||||
return funcOut{f, close}
|
||||
}
|
||||
|
||||
type NopOutput struct{}
|
||||
|
||||
func (NopOutput) Write(time.Time, bool, string) {}
|
||||
|
||||
func (NopOutput) Close() error { return nil }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue