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

Configure Feed

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

cmd/zoekt: suppress logging if -v is missing (#869)

The logging is neat for debugging, but is distracting when using
cmd/zoekt as a grep replacement.

+4
+4
cmd/zoekt/main.go
··· 177 177 } 178 178 pat := flag.Arg(0) 179 179 180 + if !*verbose { 181 + log.SetOutput(io.Discard) 182 + } 183 + 180 184 var searcher zoekt.Searcher 181 185 var err error 182 186 if *shard != "" {