From 042dabbe0d842582eef3870c7fac30c9fa62c1ef Mon Sep 17 00:00:00 2001 From: Martin Hutchinson Date: Mon, 30 Jan 2023 10:39:45 +0000 Subject: [PATCH] Downgrade fetcher logging to verbose 1 This is consistent with the other logging in that file --- scanner/fetcher.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scanner/fetcher.go b/scanner/fetcher.go index 852ce83cfe..bc74de46e5 100644 --- a/scanner/fetcher.go +++ b/scanner/fetcher.go @@ -117,10 +117,10 @@ func (f *Fetcher) Prepare(ctx context.Context) (*ct.SignedTreeHead, error) { klog.Errorf("%s: GetSTH() failed: %v", f.uri, err) return nil, err } - klog.Infof("%s: Got STH with %d certs", f.uri, sth.TreeSize) + klog.V(1).Infof("%s: Got STH with %d certs", f.uri, sth.TreeSize) if size := int64(sth.TreeSize); f.opts.EndIndex == 0 || f.opts.EndIndex > size { - klog.Infof("%s: Reset EndIndex from %d to %d", f.uri, f.opts.EndIndex, size) + klog.V(1).Infof("%s: Reset EndIndex from %d to %d", f.uri, f.opts.EndIndex, size) f.opts.EndIndex = size } f.sth = sth