mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 14:07:38 +03:00
config: Create log file if it doesn't exist
This commit is contained in:
parent
56260ee6bb
commit
1a2d6724ac
1 changed files with 1 additions and 1 deletions
|
@ -231,7 +231,7 @@ func logOutput(m *config.Map, node *config.Node) (interface{}, error) {
|
||||||
}
|
}
|
||||||
return nil, nil
|
return nil, nil
|
||||||
default:
|
default:
|
||||||
w, err := os.OpenFile(arg, os.O_RDWR, os.ModePerm)
|
w, err := os.OpenFile(arg, os.O_WRONLY|os.O_APPEND|os.O_CREATE, 0666)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("failed to create log file: %v", err)
|
return nil, fmt.Errorf("failed to create log file: %v", err)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue