mirror of
https://github.com/ocaml-tracing/ocaml-opentelemetry.git
synced 2026-03-11 04:58:39 -04:00
Add pp implemtation for Client_ocurl.Config
This commit is contained in:
parent
ec0efec681
commit
90fa0ba3b7
1 changed files with 6 additions and 1 deletions
|
|
@ -15,7 +15,12 @@ type t = {
|
||||||
@since 0.12*)
|
@since 0.12*)
|
||||||
}
|
}
|
||||||
|
|
||||||
let pp fmt _ = Format.pp_print_string fmt "TODO"
|
let pp out self =
|
||||||
|
let { bg_threads; ticker_thread; ticker_interval_ms; common } = self in
|
||||||
|
Format.fprintf out
|
||||||
|
"{@[ bg_threads=%d;@ ticker_thread=%B;@ ticker_interval_ms=%d;@ common=%a \
|
||||||
|
@]}"
|
||||||
|
bg_threads ticker_thread ticker_interval_ms Client.Config.pp common
|
||||||
|
|
||||||
module Env = Client.Config.Env ()
|
module Env = Client.Config.Env ()
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue