this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Lower logging level for directory (#543)

authored by

Jaz and committed by
GitHub
16f1b635 9de1343d

+2 -2
+2 -2
atproto/identity/handle.go
··· 185 185 triedFallback := false 186 186 did, dnsErr = d.ResolveHandleDNS(ctx, handle) 187 187 if errors.Is(dnsErr, ErrHandleNotFound) && d.TryAuthoritativeDNS { 188 - slog.Info("attempting authoritative handle DNS resolution", "handle", handle) 188 + slog.Debug("attempting authoritative handle DNS resolution", "handle", handle) 189 189 triedAuthoritative = true 190 190 // try harder with authoritative lookup 191 191 did, dnsErr = d.ResolveHandleDNSAuthoritative(ctx, handle) 192 192 } 193 193 if errors.Is(dnsErr, ErrHandleNotFound) && len(d.FallbackDNSServers) > 0 { 194 - slog.Info("attempting fallback DNS resolution", "handle", handle) 194 + slog.Debug("attempting fallback DNS resolution", "handle", handle) 195 195 triedFallback = true 196 196 // try harder with fallback lookup 197 197 did, dnsErr = d.ResolveHandleDNSFallback(ctx, handle)