Skip to content

Commit c1345ad

Browse files
Use correct name for cargo logging
1 parent 0fe5046 commit c1345ad

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

ci/check-benchmarks.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ PING_LOOP_PID=$!
77
trap 'kill $PING_LOOP_PID' ERR 1 2 3 6
88

99
# Install a toolchain.
10-
RUST_BACKTRACE=1 RUST_LOG=collector_raw_cargo=trace,collector=debug,rust_sysroot=debug \
10+
RUST_BACKTRACE=1 RUST_LOG=raw_cargo_messages=trace,collector=debug,rust_sysroot=debug \
1111
bindir=`cargo run -p collector --bin collector install_next`
1212

1313
# Do some benchmarking.
1414
RUST_BACKTRACE=1 \
1515
RUST_LIB_BACKTRACE=0 \
1616
CARGO_LOG=cargo::core::compiler::fingerprint=info \
17-
RUST_LOG=collector_raw_cargo=trace,collector=debug,rust_sysroot=debug \
17+
RUST_LOG=raw_cargo_messages=trace,collector=debug,rust_sysroot=debug \
1818
cargo run -p collector --bin collector -- \
1919
bench_local $bindir/rustc Test \
2020
--builds Check,Doc \

ci/check-profiling.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ PING_LOOP_PID=$!
1010
trap 'kill $PING_LOOP_PID' ERR 1 2 3 6
1111

1212
# Install a toolchain.
13-
RUST_BACKTRACE=1 RUST_LOG=collector_raw_cargo=trace,collector=debug,rust_sysroot=debug \
13+
RUST_BACKTRACE=1 RUST_LOG=raw_cargo_messages=trace,collector=debug,rust_sysroot=debug \
1414
bindir=`cargo run -p collector --bin collector install_next`
1515

1616
# Profile with eprintln.
17-
RUST_BACKTRACE=1 RUST_LOG=collector_raw_cargo=trace,collector=debug,rust_sysroot=debug \
17+
RUST_BACKTRACE=1 RUST_LOG=raw_cargo_messages=trace,collector=debug,rust_sysroot=debug \
1818
cargo run -p collector --bin collector -- \
1919
profile_local eprintln $bindir/rustc Test \
2020
--cargo $bindir/cargo \
@@ -29,7 +29,7 @@ test -f results/eprintln-Test-helloworld-Opt-Full
2929
test ! -e results/eprintln-Test-helloworld-Doc-Full
3030

3131
# Profile with llvm-lines.
32-
RUST_BACKTRACE=1 RUST_LOG=collector_raw_cargo=trace,collector=debug,rust_sysroot=debug \
32+
RUST_BACKTRACE=1 RUST_LOG=raw_cargo_messages=trace,collector=debug,rust_sysroot=debug \
3333
cargo run -p collector --bin collector -- \
3434
profile_local llvm-lines $bindir/rustc Test \
3535
--builds Debug \

0 commit comments

Comments
 (0)