logging lint (#463)

This commit is contained in:
Michael Quigley 2024-09-25 11:20:03 -04:00
parent 3fbcaa5f24
commit f1200eef59
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62

View File

@ -9,6 +9,6 @@ import (
func (i *agentGrpcImpl) Version(_ context.Context, _ *agentGrpc.VersionRequest) (*agentGrpc.VersionResponse, error) {
v := build.String()
logrus.Infof("responding to version inquiry with '%v'", v)
logrus.Debugf("responding to version inquiry with '%v'", v)
return &agentGrpc.VersionResponse{V: v}, nil
}