From 392c31526cbeb6fc67adaceed93430df18042911 Mon Sep 17 00:00:00 2001 From: Marcin S Date: Sun, 23 Oct 2022 16:50:48 -0400 Subject: [PATCH] Make log for execute job conclusion match prepare job conclusion Trace log for conclusion of prepare job: ```rs gum::debug!( target: LOG_TARGET, validation_code_hash = ?artifact_id.code_hash, ?worker, ?rip, "prepare worker concluded", ); ``` --- node/core/pvf/src/execute/queue.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/node/core/pvf/src/execute/queue.rs b/node/core/pvf/src/execute/queue.rs index 0876ece3e9cf..9b240e02df17 100644 --- a/node/core/pvf/src/execute/queue.rs +++ b/node/core/pvf/src/execute/queue.rs @@ -244,12 +244,12 @@ fn handle_job_finish( }; queue.metrics.execute_finished(); - gum::trace!( + gum::debug!( target: LOG_TARGET, validation_code_hash = ?artifact_id.code_hash, + ?worker, worker_rip = idle_worker.is_none(), - ?result, - "job finished.", + "execute worker concluded", ); // First we send the result. It may fail due the other end of the channel being dropped, that's