Is your feature request related to a problem? Please describe.
grpc-middleware has support of logrus logger. However, they only accept argument with type *logrus.Logger. In salt, *logrus.Logger is private, we need to have a getter function to get the object.
Describe the solution you'd like
In this file, we could add a new function
func (l *Logrus) LogrusLogger() *logrus.Logger {
return l.log
}