Fix a missed argument that breaks go test (which invokes go vet and fails if that fails)

This commit is contained in:
Eugene Bujak 2018-09-14 14:47:27 +03:00
parent b9999f155e
commit 5c6aa910ef
1 changed files with 1 additions and 1 deletions

View File

@ -955,7 +955,7 @@ func (filter *filter) update(now time.Time) (bool, error) {
continue
}
if err != nil {
log.Printf("Couldn't add rule %s: %s", err)
log.Printf("Couldn't add rule %s: %s", filter.URL, err)
return false, err
}
rulesCount++