syz-manager: log suppressed crashes always

If there are few of them, it does not matter if they are printed or not.
However if there are lots of them, they need to be seen in log.
This commit is contained in:
Dmitry Vyukov 2018-04-27 15:43:55 +02:00
parent 3c7caf1d6e
commit 1e49a807a4

View File

@ -595,7 +595,7 @@ func (mgr *Manager) isSuppressed(crash *Crash) bool {
if !re.Match(crash.Output) {
continue
}
Logf(1, "vm-%v: suppressing '%v' with '%v'", crash.vmIndex, crash.Title, re.String())
Logf(0, "vm-%v: suppressing '%v' with '%v'", crash.vmIndex, crash.Title, re.String())
mgr.mu.Lock()
mgr.stats["suppressed"]++
mgr.mu.Unlock()