package tezos-event-logging

  1. Overview
  2. Docs

Use All_sinks.register to add a new inactive sink, then All_sinks.activate to make it handle events.

val register : 'a sink_definition -> unit

Register a new sink (e.g. let () = Internal_event.All_sinks.register (module Sink_implementation)) for it to be available (but inactive) in the framework.

Make a registered sink active: the function finds it by URI scheme and calls configure.

Call close on all the sinks.

val pp_state : Format.formatter -> unit -> unit

Display the state of registered/active sinks.