Skip to content

Commit

Permalink
Use debug for prints in RPC
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemartinlogan committed Sep 29, 2023
1 parent 7b13e29 commit d51d6f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks_required/remote_queue/src/remote_queue.cc
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ class Server : public TaskLib {
orig_task->UnsetDataOwner();
orig_task->UnsetLongRunning();
queue->Emplace(orig_task->prio_, orig_task->lane_hash_, p);
HILOG(kInfo,
HILOG(kDebug,
"(node {}) Executing task (task_node={}, task_state={}/{}, state_name={}, method={}, size={}, lane_hash={})",
LABSTOR_CLIENT->node_id_,
orig_task->task_node_,
Expand All @@ -271,7 +271,7 @@ class Server : public TaskLib {
TaskState *exec, TaskStateId state_id) {
BinaryOutputArchive<false> ar(DomainId::GetNode(LABSTOR_CLIENT->node_id_));
std::vector<DataTransfer> out_xfer = exec->SaveEnd(method, ar, orig_task);
HILOG(kInfo, "(node {}) Returning {} bytes of data (task_node={}, task_state={}/{}, method={})",
HILOG(kDebug, "(node {}) Returning {} bytes of data (task_node={}, task_state={}/{}, method={})",
LABSTOR_CLIENT->node_id_,
out_xfer[0].data_size_,
orig_task->task_node_,
Expand Down

0 comments on commit d51d6f5

Please sign in to comment.