diff options
Diffstat (limited to 'internal/manager')
-rw-r--r-- | internal/manager/manager.go | 8 |
1 files changed, 4 insertions, 4 deletions
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 { |