fix log
Kim committed
Mar 31, 2026 at 15:12 UTC
fe3673f360d9d967f92e11bbfc4f76caef036bce
1 file changed
+2
-5
sdk/listener.go
+2
-5
@@ -144,13 +144,10 @@ func (l *Listener) runStartup(ctx context.Context, readyTarget int) {
144
}
145
go l.runRenewLoop(ctx)
146
publicURL := l.PublicURL()
147
- event := log.Info().
148
- Str("relay_url", l.api.baseURL.String()).
149
- Str("lease_id", l.LeaseID())
147
+ event := log.Info().Str("lease_id", l.LeaseID())
148
if publicURL != "" {
149
event.
152
- Str("public_url", publicURL).
153
- Msg("connected; open this URL: " + publicURL)
150
+ Msg("service ready at " + publicURL)
151
return
152
}
153
event.Msg("relay listener registered")