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 // DEBUG: debugging some annoying renewal(?) issues with tokend
accessor, _ := s.TokenAccessor() accessorData, _ := s.TokenAccessor()
ttl, _ := s.TokenTTL() ttlData, _ := s.TokenTTL()
log.Infof("wrapping token accessor %v with token TTL %v", accessor, ttl) log.Infof("wrapping token accessor %v with token TTL %v", accessorData, ttlData)
return ttledSecret{ return ttledSecret{
TokenSecret: s, TokenSecret: s,