genofire/hs_monolith
genofire
/
hs_monolith
Archived
1
0
Fork 0

Update main.go

This commit is contained in:
Geno 2017-03-30 13:59:28 +02:00 committed by GitHub
parent b1e99beeca
commit 6be78175a7
1 changed files with 3 additions and 2 deletions

View File

@ -11,6 +11,7 @@ import (
goji "goji.io" goji "goji.io"
http_api "github.com/genofire/hs_master-kss-monolith/http" http_api "github.com/genofire/hs_master-kss-monolith/http"
"github.com/genofire/hs_master-kss-monolith/lib"
"github.com/genofire/hs_master-kss-monolith/models" "github.com/genofire/hs_master-kss-monolith/models"
) )
@ -29,10 +30,10 @@ func main() {
config = models.ReadConfigFile(configFile) config = models.ReadConfigFile(configFile)
if !timestamps { if !timestamps {
log.SetFlags(0) lib.Log.DisableTimestamp(true)
} }
log.Println("Starting rezension monolith") lib.Log.Info("Starting rezension monolith")
// Startwebsrver // Startwebsrver
router := goji.NewMux() router := goji.NewMux()