mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-06-23 00:39:13 +02:00
move log commands into main file
This commit is contained in:
@ -5,10 +5,8 @@ import (
|
|||||||
// "log"
|
// "log"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
|
||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"os/user"
|
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@ -50,38 +48,6 @@ type StashEntry struct {
|
|||||||
DisplayString string
|
DisplayString string
|
||||||
}
|
}
|
||||||
|
|
||||||
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")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Map (from https://gobyexample.com/collection-functions)
|
// Map (from https://gobyexample.com/collection-functions)
|
||||||
func Map(vs []string, f func(string) string) []string {
|
func Map(vs []string, f func(string) string) []string {
|
||||||
vsm := make([]string, len(vs))
|
vsm := make([]string, len(vs))
|
||||||
|
37
main.go
37
main.go
@ -3,7 +3,12 @@ package main
|
|||||||
import (
|
import (
|
||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"log"
|
||||||
|
"os"
|
||||||
|
"os/user"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/fatih/color"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
@ -11,6 +16,38 @@ var (
|
|||||||
debugging bool
|
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() {
|
func main() {
|
||||||
debuggingPointer := flag.Bool("debug", false, "a boolean")
|
debuggingPointer := flag.Bool("debug", false, "a boolean")
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
Reference in New Issue
Block a user