Skip to content

Commit

Permalink
Comment out the logging setup in the test harness
Browse files Browse the repository at this point in the history
It was accidentally uncommented in 520a30b.
  • Loading branch information
glandium authored and sylvestre committed Nov 14, 2023
1 parent 725ae6f commit 71a528f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/harness/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ pub fn start_local_daemon(cfg_path: &Path, cached_cfg_path: &Path) {
if !sccache_command()
.arg("--start-server")
// Uncomment following lines to debug locally.
.env("SCCACHE_LOG", "debug")
.env(
"SCCACHE_ERROR_LOG",
env::temp_dir().join("sccache_local_daemon.txt"),
)
// .env("SCCACHE_LOG", "debug")
// .env(
// "SCCACHE_ERROR_LOG",
// env::temp_dir().join("sccache_local_daemon.txt"),
// )
.env("SCCACHE_CONF", cfg_path)
.env("SCCACHE_CACHED_CONF", cached_cfg_path)
.status()
Expand Down

0 comments on commit 71a528f

Please sign in to comment.