1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-20 05:19:24 +02:00

create log if debugging and the file doesn't already exist

This commit is contained in:
Jesse Duffield 2018-08-09 14:36:26 +10:00
parent 4832d365f1
commit ace8544512

View File

@ -62,7 +62,10 @@ func localLog(colour color.Attribute, path string, objects ...interface{}) {
if !*debuggingFlag { if !*debuggingFlag {
return return
} }
f, _ := os.OpenFile(projectPath(path), os.O_APPEND|os.O_WRONLY, 0644) f, err := os.OpenFile(projectPath(path), os.O_APPEND|os.O_WRONLY|os.O_CREATE, 0644)
if err != nil {
panic(err.Error())
}
defer f.Close() defer f.Close()
for _, object := range objects { for _, object := range objects {
colorFunction := color.New(colour).SprintFunc() colorFunction := color.New(colour).SprintFunc()