fork of https://github.com/sourcegraph/zoekt
0

Configure Feed

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

webserver: downgrade search logs to debug from info

Info is our default level, so this created quite a bit of logspam.
Especially since things like healthchecks trigger searches.

Test Plan: it compiles

+1 -1
+1 -1
cmd/zoekt-webserver/main.go
··· 446 446 return 447 447 } 448 448 449 - logger.Info("search", 449 + logger.Debug("search", 450 450 sglog.Int64("stat.ContentBytesLoaded", st.ContentBytesLoaded), 451 451 sglog.Int64("stat.IndexBytesLoaded", st.IndexBytesLoaded), 452 452 sglog.Int("stat.Crashes", st.Crashes),