fix: correct logging of our ID after startup & generate (#10234)

This is one place we actually want the full string.
This commit is contained in:
Jakob Borg
2025-08-10 06:25:13 +00:00
committed by GitHub
parent adcbd31e62
commit 34f61ce464
2 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -136,7 +136,7 @@ func (a *App) startup() error {
// Figure out our device ID and log it.
a.myID = protocol.NewDeviceID(a.cert.Certificate[0])
slog.Info("Calculated our device ID", a.myID.LogAttr())
slog.Info("Calculated our device ID", slog.String("device", a.myID.String()))
// Emit the Starting event, now that we know who we are.