Skip to content

Commit

Permalink
Add debug output that will help to differentiate the cases for pantsb…
Browse files Browse the repository at this point in the history
  • Loading branch information
stuhood committed Jul 22, 2022
1 parent 29750e6 commit ee4f3c4
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pants.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,9 @@ unmatched_build_file_globs = "error"
# NB: Users must still set `--remote-cache-{read,write}` to enable the remote cache.
remote_store_address = "grpcs://cache.toolchain.com:443"
remote_auth_plugin = "toolchain.pants.auth.plugin:toolchain_auth_plugin"
# TODO: See https://github.com/pantsbuild/pants/issues/16096.
remote_cache_eager_fetch = true
# TODO: May cause tests which experience missing digests to hang.
# See https://github.com/pantsbuild/pants/issues/16096.
remote_cache_eager_fetch = false

[anonymous-telemetry]
enabled = true
Expand Down
2 changes: 2 additions & 0 deletions src/rust/engine/src/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -751,6 +751,8 @@ impl Context {
if let Some(new_level) = maybe_new_level {
workunit.increment_counter(Metric::BacktrackAttempts, 1);
let description = &root.process.description;
// TODO: This message should likely be at `info`, or eventually, debug.
// see https://github.com/pantsbuild/pants/issues/15867
log::warn!(
"Making attempt {new_level} to backtrack and retry `{description}`, due to \
missing digest {digest:?}."
Expand Down
13 changes: 13 additions & 0 deletions src/rust/engine/src/nodes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -468,6 +468,19 @@ impl ExecuteProcess {
}
}

if backtrack_level > 0 {
// TODO: This message is symmetrical to the "Making attempt {} to backtrack and retry {}"
// message in `context.rs`, but both of them are effectively debug output. They should be
// quieted down as part of https://github.com/pantsbuild/pants/issues/15867 once all bugs
// have been shaken out.
log::info!(
"On backtrack attempt {} for `{}`, produced: {:?}",
backtrack_level,
request.description,
res.output_directory.digests()
);
}

Ok(ProcessResult {
result: res,
backtrack_level,
Expand Down

0 comments on commit ee4f3c4

Please sign in to comment.