Module Debug.Debug_event

type t = {
ev_ts : float;
ev_level : int;
ev_channel : string;
ev_msg : string;
}
val to_doc : t -> Imandra_document.Document.t
val print : t CCFormat.printer
val make : ?⁠c:string -> ?⁠ts:float -> ?⁠level:int -> string -> t
module Encode : functor (E : Decoders.Encode.S) -> sig ... end
module Decode : functor (D : Decoders.Decode.S) -> sig ... end
module EncodeMsgpck : module type of sig ... end
module DecodeMsgpck : module type of sig ... end
val to_msgpck : t -> Msgpck.t
val of_msgpck : Msgpck.t -> (t, string) Stdlib.result