Logger.Consumer_registry
The Consumer_registry is a global registry where consumers * of the Logger can be registered. Each Consumer consists of * a Processor and a Transport. The processor filters and * serializes structured log messages to strings, and the * transport encapsulates the side effects of the consumer. * Every Consumer is registered under some unique id to * ensure the code does not accidentally attach the same * consumer multiple times.
val register : id:id -> processor:Processor.t -> transport:Transport.t -> unit