From 7747c3a452b46c0016cef4a56644747fdbb54791 Mon Sep 17 00:00:00 2001 From: Michael Quigley Date: Mon, 16 Sep 2024 13:19:12 -0400 Subject: [PATCH] log lint (#463) --- agent/agent.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/agent/agent.go b/agent/agent.go index e88f3e84b..482202949 100644 --- a/agent/agent.go +++ b/agent/agent.go @@ -68,11 +68,11 @@ func (a *Agent) Shutdown() { logrus.Warnf("unable to remove agent socket: %v", err) } for _, shr := range a.shares { - logrus.Infof("stopping share '%v'", shr.token) + logrus.Debugf("stopping share '%v'", shr.token) a.outShares <- shr } for _, acc := range a.accesses { - logrus.Infof("stopping access '%v'", acc.token) + logrus.Debugf("stopping access '%v'", acc.token) a.outAccesses <- acc } }