diff options
author | Rasmus Dahlberg <rasmus@rgdd.se> | 2024-05-16 07:47:04 +0200 |
---|---|---|
committer | Rasmus Dahlberg <rasmus@rgdd.se> | 2024-05-16 07:47:04 +0200 |
commit | bea0a1bce37a73acb323269edeaa5b7d11a2b42d (patch) | |
tree | f809f0d0129478e0c1dbe526c7ca6855c6665432 /internal/monitor | |
parent | 6f90052197d3906cb5406b9c65a3a8cdc7fe200b (diff) |
Fix nits spotted by go vet
Diffstat (limited to 'internal/monitor')
-rw-r--r-- | internal/monitor/monitor.go | 12 |
1 files changed, 6 insertions, 6 deletions
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 { |