From 8fcb964bcd98c274a056c6764b5b1db058827e26 Mon Sep 17 00:00:00 2001 From: Luke Granger-Brown Date: Sun, 12 Mar 2023 15:30:04 +0000 Subject: [PATCH] tokend: fix debugging line... --- go/tokend/tokencache.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/go/tokend/tokencache.go b/go/tokend/tokencache.go index 8046c396f7..2f39c7bbaa 100644 --- a/go/tokend/tokencache.go +++ b/go/tokend/tokencache.go @@ -34,9 +34,9 @@ func wrapToken(s *TokenSecret) ttledSecret { } // DEBUG: debugging some annoying renewal(?) issues with tokend - accessor, _ := s.TokenAccessor() - ttl, _ := s.TokenTTL() - log.Infof("wrapping token accessor %v with token TTL %v", accessor, ttl) + accessorData, _ := s.TokenAccessor() + ttlData, _ := s.TokenTTL() + log.Infof("wrapping token accessor %v with token TTL %v", accessorData, ttlData) return ttledSecret{ TokenSecret: s,