summaryrefslogtreecommitdiffstats
path: root/main.go
blob: a84700ccf0a46d76240eac78683635d41c7f62e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package main

import (
  "flag"
  "fmt"
  "log"
  "os"
  "os/user"
  "time"

  "github.com/fatih/color"
)

var (
  startTime time.Time
  debugging bool
)

func homeDirectory() string {
  usr, err := user.Current()
  if err != nil {
    log.Fatal(err)
  }
  return usr.HomeDir
}

func devLog(objects ...interface{}) {
  localLog(color.FgWhite, homeDirectory()+"/go/src/github.com/jesseduffield/lazygit/development.log", objects...)
}

func colorLog(colour color.Attribute, objects ...interface{}) {
  localLog(colour, homeDirectory()+"/go/src/github.com/jesseduffield/lazygit/development.log", objects...)
}

func commandLog(objects ...interface{}) {
  localLog(color.FgWhite, homeDirectory()+"/go/src/github.com/jesseduffield/lazygit/commands.log", objects...)
}

func localLog(colour color.Attribute, path string, objects ...interface{}) {
  if !debugging {
    return
  }
  f, _ := os.OpenFile(path, os.O_APPEND|os.O_WRONLY, 0644)
  defer f.Close()
  for _, object := range objects {
    colorFunction := color.New(colour).SprintFunc()
    f.WriteString(colorFunction(fmt.Sprint(object)) + "\n")
  }
}

func main() {
  debuggingPointer := flag.Bool("debug", false, "a boolean")
  flag.Parse()
  debugging = *debuggingPointer
  fmt.Println(homeDirectory() + "/go/src/github.com/jesseduffield/lazygit/development.log")
  devLog("\n\n\n\n\n\n\n\n\n\n")
  startTime = time.Now()
  verifyInGitRepo()
  run()
}