From 4320ec32bd44793e077a482003409ae791e1dfea Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 10 Apr 2024 11:56:07 +0200 Subject: pkg/fuzzer: restore printing of triage queue to console --- pkg/fuzzer/stats.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/fuzzer') diff --git a/pkg/fuzzer/stats.go b/pkg/fuzzer/stats.go index 38bef0405..c860b8bb9 100644 --- a/pkg/fuzzer/stats.go +++ b/pkg/fuzzer/stats.go @@ -27,7 +27,7 @@ type Stats struct { func newStats() Stats { return Stats{ StatCandidates: stats.Create("candidates", "Number of candidate programs in triage queue", - stats.Graph("corpus")), + stats.Console, stats.Graph("corpus")), statNewInputs: stats.Create("new inputs", "Potential untriaged corpus candidates", stats.Graph("corpus")), statJobs: stats.Create("fuzzer jobs", "Total running fuzzer jobs", stats.NoGraph), -- cgit mrf-deployment