Compare commits

...

2 Commits

Author SHA1 Message Date
d9f25a2613 Merge branch 'main' of https://gitea.dikurium.ch/InnoPeak/drone-gitea-release into main
Some checks failed
continuous-integration/drone/push Build is failing
2024-07-11 17:33:48 +02:00
b2c43a5f3d feat: use log.textformatter 2024-07-11 17:33:47 +02:00
2 changed files with 4 additions and 17 deletions

19
main.go
View File

@ -55,14 +55,14 @@ func init() {
}
func main() {
log.SetFormatter(new(formatter))
log.SetFormatter(&log.TextFormatter{
DisableTimestamp: true,
})
switch args.Level {
case "debug":
log.SetFormatter(textFormatter)
log.SetLevel(log.DebugLevel)
case "trace":
log.SetFormatter(textFormatter)
log.SetLevel(log.TraceLevel)
}
@ -70,16 +70,3 @@ func main() {
log.Fatalln(err)
}
}
// default formatter that writes logs without including timestamp
// or level information.
type formatter struct{}
func (*formatter) Format(entry *log.Entry) ([]byte, error) {
return []byte(entry.Message), nil
}
// text formatter that writes logs with level information
var textFormatter = &log.TextFormatter{
DisableTimestamp: true,
}

View File

@ -50,7 +50,7 @@ func SetBasicAuth(username, password string) func(repo *git.Repository) error {
func FetchTags() func(repo *git.Repository) error {
return func(repo *git.Repository) error {
log.Info("Fetching latest git tags")
log.Info("Fetching git tags")
err := repo.Fetch(&git.FetchOptions{Tags: git.AllTags})