Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Demote network pool batch size logs to debug #12846

Merged
merged 1 commit into from
Mar 29, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/lib/network_pool/batcher.ml
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ module Transaction_pool = struct
let create verifier : t =
let logger = Logger.create () in
create ~compare_init:compare_envelope ~logger (fun (ds : input list) ->
[%log info]
[%log debug]
"Dispatching $num_proofs transaction pool proofs to verifier"
~metadata:[ ("num_proofs", `Int (List.length ds)) ] ;
let open Deferred.Or_error.Let_syntax in
Expand Down Expand Up @@ -367,7 +367,7 @@ module Snark_pool = struct
(Sys.getenv_opt "MAX_VERIFIER_BATCH_SIZE") )
~compare_init:compare_envelope ~logger
(fun ps0 ->
[%log info] "Dispatching $num_proofs snark pool proofs to verifier"
[%log debug] "Dispatching $num_proofs snark pool proofs to verifier"
~metadata:[ ("num_proofs", `Int (List.length ps0)) ] ;
let ps =
List.concat_map ps0 ~f:(function
Expand Down