Called by gkBoot.StartHttpServer, this creates a wrapper that wraps service with a deferred logger. After the
service executes, a log will be generated
type Logger interface {
Log(elem ...interface{}) error}
Logger
Defines a logging pattern that is popular in go-kit. Establishing this interface keeps us
from having to import go-kit here while also maintaining type safety.