Skip to content

Commit

Permalink
log lint (#463)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelquigley committed Sep 16, 2024
1 parent 9653980 commit 7747c3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions agent/agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
Expand Down

0 comments on commit 7747c3a

Please sign in to comment.