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/manager/manager.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'internal/manager') diff --git a/internal/manager/manager.go b/internal/manager/manager.go index ba7f1d0..bf1ad92 100644 --- a/internal/manager/manager.go +++ b/internal/manager/manager.go @@ -21,10 +21,10 @@ type Config struct { Directory string // Path to a directory where everything will be stored // Optional - Logger logger.Logger // Where to output messages and with what verbosity - AlertDelay time.Duration // Time before alerting on certificates that are unaccounted for - MetadataRefreshInterval time.Duration // How often to update the list of monitored logs - ShutdownTimeout time.Duration // Force shutdown after this timeout (FIXME: should not be needed) + Logger *logger.Logger // Where to output messages and with what verbosity + AlertDelay time.Duration // Time before alerting on certificates that are unaccounted for + MetadataRefreshInterval time.Duration // How often to update the list of monitored logs + ShutdownTimeout time.Duration // Force shutdown after this timeout (FIXME: should not be needed) } type Manager struct { -- cgit v1.2.3