API initialization changes (#483)

* initialization changes and shows no error

* fix issues

* remove unnecessary go routine

* revert

* fix http.Serve

* add change log
This commit is contained in:
Pedro Nasser
2017-01-18 19:07:11 -02:00
committed by GitHub
parent 15abc9fb4b
commit bf1f435458
5 changed files with 25 additions and 9 deletions

View File

@@ -97,7 +97,7 @@ func NewBoltMQ(url *url.URL) (*BoltDbMQ, error) {
db: db,
}
mq.Start()
log.WithFields(logrus.Fields{"file": url.Path}).Info("BoltDb initialized")
log.WithFields(logrus.Fields{"file": url.Path}).Debug("BoltDb initialized")
return mq, nil
}