Logger
module Stable : sig ... end
type t = Stable.V1.t
module Level : sig ... end
module Time : sig ... end
module Source : sig ... end
module Metadata : sig ... end
val metadata : t -> Metadata.t
Used only when dealing with the raw logging function
module Message : sig ... end
module Processor : sig ... end
A Processor is a module which processes structured log * messages into strings. This is used as part of defining * a Consumer.
module Transport : sig ... end
A Transport is a module which represent a destination * for a log strings. This is used as part of defining a * Consumer.
module Consumer_registry : sig ... end
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.
type 'a log_function =
t ->
module_:string ->
location:string ->
?tags:Logger__Tags.t list ->
?metadata:( string, Yojson.Safe.t ) Core_kernel.List.Assoc.t ->
?event_id:Structured_log_events.id ->
( 'a, unit, string, unit ) Core_kernel.format4 ->
'a
val create :
?metadata:( string, Yojson.Safe.t ) Core_kernel.List.Assoc.t ->
?id:string ->
unit ->
t
val null : unit -> t
val trace : _ log_function
val debug : _ log_function
val info : _ log_function
val warn : _ log_function
val error : _ log_function
val spam :
t ->
?tags:Logger__Tags.t list ->
?metadata:( string, Yojson.Safe.t ) Core_kernel.List.Assoc.t ->
( 'a, unit, string, unit ) Core_kernel.format4 ->
'a
spam is a special log level that omits location information
val faulty_peer : _ log_function
val faulty_peer_without_punishment : _ log_function
val fatal : _ log_function
module Structured : sig ... end
Logging of structured events.
module Str = Structured
Short alias for Structured.
module Logger_id : sig ... end