We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc0312d commit 1173bd2Copy full SHA for 1173bd2
cmd/lekko/feature.go
@@ -18,6 +18,7 @@ import (
18
"context"
19
"encoding/json"
20
"fmt"
21
+ "io"
22
"os"
23
"os/exec"
24
"path"
@@ -324,6 +325,11 @@ func configGroup() *cobra.Command {
324
325
if err != nil {
326
return err
327
}
328
+ // Don't output for compilations
329
+ // Downside: for unhappy path, compile errors will be less obvious
330
+ r.ConfigureLogger(&repo.LoggingConfiguration{
331
+ Writer: io.Discard,
332
+ })
333
ctx := cmd.Context()
334
// Take namespace input if necessary
335
if ns == "" {
0 commit comments