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

Direct cloudflared out to /dev/null #1450

Merged
merged 3 commits into from
Jul 14, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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