Module Logger.Transport

A Transport is a module which represent a destination * for a log strings. This is used as part of defining a * Consumer.

module type S = sig ... end
type t
val create : (module S with type t = 'transport_data) -> 'transport_data -> t
val stdout : unit -> t