Skip to content
This repository has been archived by the owner on Aug 3, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1450 from cloudflare/josh/cloudflared-output
Browse files Browse the repository at this point in the history
Direct cloudflared out to /dev/null
  • Loading branch information
jspspike authored Jul 14, 2020
2 parents 602b899 + 5dac4e2 commit 8b59caa
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/tail/tunnel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ pub fn command(args: &[&str], binary_path: &PathBuf, verbose: bool) -> Command {
// Let user read cloudflared process logs iff RUST_LOG=info.
if !verbose {
c.stderr(Stdio::null());
c.stdout(Stdio::null());
}

c
Expand Down

0 comments on commit 8b59caa

Please sign in to comment.