Remove redundant logging statements

- Removed log statement in `pkg/app/relay/spider-fetch.go` for batch processing
- Removed log level output in `main.go`
- Removed configuration logging in `pkg/app/config/config.go`
- Removed unused log import in `pkg/protocol/ws/subscription.go`
- Removed connection success log in `pkg/protocol/ws/client.go`
- Added early return condition for non-follow-list kind in `spider-fetch.go`
This commit is contained in:
2025-07-20 21:52:04 +01:00
parent e3c931fcf9
commit 56ab6eaa81
5 changed files with 5 additions and 7 deletions

View File

@@ -103,7 +103,6 @@ func RelayConnect(ctx context.T, url string, opts ...RelayOption) (
) {
r := NewRelay(context.Bg(), url, opts...)
err := r.Connect(ctx)
log.T.F("connected to %s", url)
return r, err
}