1
0
Fork 0
mirror of https://github.com/imjasonh/kontain.me synced 2026-07-18 14:47:48 +00:00

Don't use logging client

This commit is contained in:
Jason Hall 2019-05-16 08:48:18 -04:00
parent 28874efed9
commit 8bc4369596
4 changed files with 15 additions and 50 deletions

View file

@ -46,8 +46,8 @@ func main() {
}
http.Handle("/", &server{
info: log.New(os.Stdout, "INFO ", 0),
error: log.New(os.Stderr, "ERROR ", 0),
info: log.New(os.Stdout, "I ", log.Ldate|log.Ltime|log.Lshortfile),
error: log.New(os.Stderr, "E ", log.Ldate|log.Ltime|log.Lshortfile),
ds: ds,
})