From bea0a1bce37a73acb323269edeaa5b7d11a2b42d Mon Sep 17 00:00:00 2001 From: Rasmus Dahlberg Date: Thu, 16 May 2024 07:47:04 +0200 Subject: Fix nits spotted by go vet --- internal/monitor/monitor.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'internal/monitor/monitor.go') diff --git a/internal/monitor/monitor.go b/internal/monitor/monitor.go index 121d853..12d93cf 100644 --- a/internal/monitor/monitor.go +++ b/internal/monitor/monitor.go @@ -61,12 +61,12 @@ type LogEntry struct { type Config struct { // Optional - Matcher Matcher // Which log entries to match (default is to match all) - Logger logger.Logger // Debug prints only (no output by default) - Contact string // Something that help log operators get in touch - ChunkSize uint // Min number of leaves to propagate a chunk without matches - BatchSize uint // Max number of certificates to accept per worker - NumWorkers uint // Number of parallel workers to use for each log + Matcher Matcher // Which log entries to match (default is to match all) + Logger *logger.Logger // Debug prints only (no output by default) + Contact string // Something that help log operators get in touch + ChunkSize uint // Min number of leaves to propagate a chunk without matches + BatchSize uint // Max number of certificates to accept per worker + NumWorkers uint // Number of parallel workers to use for each log } type Monitor struct { -- cgit v1.2.3