Skip to content

Commit

Permalink
Ensure logging is off for integration test commands
Browse files Browse the repository at this point in the history
  • Loading branch information
kradalby committed Nov 7, 2021
1 parent d47b83f commit 9a26fa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration_common_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func ExecuteCommand(resource *dockertest.Resource, cmd []string, env []string) (
exitCode, err := resource.Exec(
cmd,
dockertest.ExecOptions{
Env: append(env, "LOG_LEVEL=error"),
Env: append(env, "HEADSCALE_LOG_LEVEL=disabled"),
StdOut: &stdout,
StdErr: &stderr,
},
Expand Down

0 comments on commit 9a26fa7

Please sign in to comment.