Skip to content

Commit

Permalink
cosmetics. add space in logs
Browse files Browse the repository at this point in the history
  • Loading branch information
edospadoni committed Oct 12, 2023
1 parent 6cdb990 commit c477dcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/logs/logs.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var Logs *log.Logger

func Init(name string) {
// init syslog writer
logger := log.New(os.Stderr, name, log.Ldate|log.Ltime|log.Lshortfile)
logger := log.New(os.Stderr, name+" ", log.Ldate|log.Ltime|log.Lshortfile)

// assign writer to Logs var
Logs = logger
Expand Down

0 comments on commit c477dcb

Please sign in to comment.