summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--main.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/main.go b/main.go
index 3b965b8ac..cd0ba0e87 100644
--- a/main.go
+++ b/main.go
@@ -62,7 +62,10 @@ func localLog(colour color.Attribute, path string, objects ...interface{}) {
if !*debuggingFlag {
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()
for _, object := range objects {
colorFunction := color.New(colour).SprintFunc()