Skip to content

Commit

Permalink
CP-48195: Change warn to debug
Browse files Browse the repository at this point in the history
Currently the `observe` mode of the `tracing` library do not work
corrently resulting in the logs being spammed by this warning.

Change it to debug so that the logs can be surpressed for the time
being.

Signed-off-by: Gabriel Buica <[email protected]>
  • Loading branch information
GabrielBuica committed Apr 30, 2024
1 parent 0e95436 commit 9ac7c64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ocaml/libs/tracing/tracing.ml
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ let get_tracer ~name =
| Some provider ->
Tracer.create ~name ~provider
| None ->
warn "No provider found for tracing %s" name ;
debug "No provider found for tracing %s" name ;
Tracer.no_op

let enable_span_garbage_collector ?(timeout = 86400.) () =
Expand Down

0 comments on commit 9ac7c64

Please sign in to comment.