Skip to content

Commit

Permalink
[core] make unnecssary logs debug ray-project#41867
Browse files Browse the repository at this point in the history
Co-authored-by: SangBin Cho <[email protected]>
  • Loading branch information
rkooo567 and SangBin Cho authored Dec 14, 2023
1 parent ebefb03 commit 6cc3909
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ray/gcs/gcs_server/gcs_actor_manager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ void GcsActorManager::HandleGetNamedActorInfo(
// The named actor was not found or the actor is already removed.
std::stringstream stream;
stream << "Actor with name '" << name << "' was not found.";
RAY_LOG(WARNING) << stream.str();
RAY_LOG(DEBUG) << stream.str();
status = Status::NotFound(stream.str());
} else {
*reply->mutable_actor_table_data() = iter->second->GetActorTableData();
Expand Down

0 comments on commit 6cc3909

Please sign in to comment.