tokend: fix debugging line...

This commit is contained in:
Luke Granger-Brown 2023-03-12 15:30:04 +00:00
parent fa17ca41c9
commit 8fcb964bcd

View file

@ -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,