diff --git a/index.html b/index.html index 88027cd..b6275f7 100644 --- a/index.html +++ b/index.html @@ -11,8 +11,8 @@
diff --git a/trace-tef/Trace_tef/index.html b/trace-tef/Trace_tef/index.html index f4e42c0..fa3bb50 100644 --- a/trace-tef/Trace_tef/index.html +++ b/trace-tef/Trace_tef/index.html @@ -2,4 +2,4 @@Trace_tefval collector :
out:[ `File of string | `Stderr | `Stdout ] ->
unit ->
- Trace.collectorMake a collector that writes into the given output. See setup for more details.
Output for tracing.
`Stdout will enable tracing and print events on stdout`Stderr will enable tracing and print events on stderr`File "foo" will enable tracing and print events into file named "foo"val setup : ?out:[ output | `Env ] -> unit -> unitsetup () installs the collector depending on out.
val with_setup : ?out:[ output | `Env ] -> (unit -> 'a) -> 'aSetup, and make sure to shutdown before exiting
Make a collector that writes into the given output. See setup for more details.
Output for tracing.
`Stdout will enable tracing and print events on stdout`Stderr will enable tracing and print events on stderr`File "foo" will enable tracing and print events into file named "foo"val setup : ?out:[ output | `Env ] -> unit -> unitsetup () installs the collector depending on out.
val with_setup : ?out:[ output | `Env ] -> unit -> (unit -> 'a) -> 'awith_setup () f (optionally) sets a collector up, calls f(), and makes sure to shutdown before exiting. since 0.2 a () argument was added.