Skip to content

Commit

Permalink
reduced log severity for failure to dial masquerade
Browse files Browse the repository at this point in the history
  • Loading branch information
myleshorton committed Nov 6, 2024
1 parent c7182ad commit f26612b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fronted.go
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ func (f *fronted) vetBatch(start, batchSize int, successful *atomic.Uint32, list
func (f *fronted) vetMasquerade(m MasqueradeInterface) bool {
conn, masqueradeGood, err := f.dialMasquerade(m)
if err != nil {
log.Errorf("unexpected error vetting masquerades: %v", err)
log.Debugf("unexpected error vetting masquerades: %v", err)
return false
}
defer func() {
Expand Down

0 comments on commit f26612b

Please sign in to comment.