Added custom logger. Right now, not configurable.
This commit is contained in:
10
internal/logger.go
Normal file
10
internal/logger.go
Normal file
@ -0,0 +1,10 @@
|
||||
package internal
|
||||
|
||||
import (
|
||||
"log"
|
||||
"os"
|
||||
)
|
||||
|
||||
var (
|
||||
Logger = log.New(os.Stdout, "", 0)
|
||||
)
|
Reference in New Issue
Block a user