Skip to content

Commit

Permalink
Downgrade rendezvous abortion logging
Browse files Browse the repository at this point in the history
  • Loading branch information
jayfurmanek committed May 16, 2024
1 parent 33d0e01 commit b64e287
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tensorflow/core/framework/local_rendezvous.cc
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,8 @@ void LocalRendezvous::DoAbort(const Status& status) {
mutex_lock l(mu_);
status_.Update(status);
}
LOG(WARNING) << "Local rendezvous is aborting with status: " << status;
LOG_EVERY_POW_2(INFO) << "Local rendezvous is aborting with status: "
<< status;

// Keeps one Item to make sure the current rendezvous won't be destructed.
std::unique_ptr<Item> to_delete;
Expand Down

0 comments on commit b64e287

Please sign in to comment.