config: Create log file if it doesn't exist

This commit is contained in:
fox.cpp 2019-08-31 15:52:43 +03:00
parent 56260ee6bb
commit 1a2d6724ac
No known key found for this signature in database
GPG key ID: E76D97CCEDE90B6C

View file

@ -231,7 +231,7 @@ func logOutput(m *config.Map, node *config.Node) (interface{}, error) {
}
return nil, nil
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 {
return nil, fmt.Errorf("failed to create log file: %v", err)
}