genofire/hs_monolith
genofire
/
hs_monolith
Archived
1
0
Fork 0

Update status.go

This commit is contained in:
Geno 2017-03-30 14:01:42 +02:00 committed by GitHub
parent 9a460b9864
commit 75ff9019c9
1 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@ import (
) )
func statusHandler(w http.ResponseWriter, r *http.Request) { func statusHandler(w http.ResponseWriter, r *http.Request) {
lib.LogHTTP(r).Info("show status") log := lib.LogHTTP(r)
lib.Write(w, "running") lib.Write(w, "running")
log.Info("show status")
} }