ipn/ipnlocal: log AUM hash on startup as base32, not hex

Before:

    tka initialized at head 325557575a59525354484e4a534f494b4c4e56575435583737564b5036584c4d4c335534554255344c344c36484c5a444a323341

After:

    tka initialized at head 2UWWZYRSTHNJSOIKLNVWT5X77VKP6XLML3U4UBU4L4L6HLZDJ23A

Printing the AUM hash as hex makes it difficult to compare to other AUM
hashes; stringifying it will make it consistent with other printing.

Updates #cleanup

Change-Id: Ic1e23a9ce6a71a53cff7d2190f9fa06eb838ab89
Signed-off-by: Alex Chan <alexc@tailscale.com>
This commit is contained in:
Alex Chan 2026-04-16 12:53:47 +01:00 committed by Alex Chan
parent d3ba1480f5
commit 4f47c3c93d

View File

@ -96,7 +96,7 @@ func (b *LocalBackend) initTKALocked() error {
authority: authority,
storage: storage,
}
b.logf("tka initialized at head %x", authority.Head())
b.logf("tka initialized at head %s", authority.Head())
}
return nil