Added custom logger. Right now, not configurable.

This commit is contained in:
Musab Gültekin
2021-04-13 23:36:42 +03:00
parent 129402d754
commit e3d79e2574
10 changed files with 39 additions and 32 deletions

10
internal/logger.go Normal file
View File

@ -0,0 +1,10 @@
package internal
import (
"log"
"os"
)
var (
Logger = log.New(os.Stdout, "", 0)
)