Skip to content

Commit

Permalink
Merge pull request #54 from 46bit/patch-1
Browse files Browse the repository at this point in the history
Fix mistaken DNS resolution error message
  • Loading branch information
czerwonk authored Aug 31, 2021
2 parents 2c8be67 + f52f92a commit c9777d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ func refreshDNS(targets []*target, monitor *mon.Monitor) {
go func(ta *target) {
err := ta.addOrUpdateMonitor(monitor)
if err != nil {
log.Errorf("could refresh dns: %v", err)
log.Errorf("could not refresh dns: %v", err)
}
}(t)
}
Expand Down

0 comments on commit c9777d3

Please sign in to comment.