package logger import ( "context" "github.com/sirupsen/logrus" ) func Logger(c context.Context) *logrus.Entry { return logrus.WithContext(c) }