2016-09-08 21:13:10 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
2017-11-14 03:36:14 +04:00
|
|
|
(* Copyright (c) 2014 - 2017. *)
|
2016-09-08 21:13:10 +04:00
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
|
|
|
module type LOG = sig
|
|
|
|
|
|
|
|
val debug: ('a, Format.formatter, unit, unit) format4 -> 'a
|
|
|
|
val log_info: ('a, Format.formatter, unit, unit) format4 -> 'a
|
|
|
|
val log_notice: ('a, Format.formatter, unit, unit) format4 -> 'a
|
|
|
|
val warn: ('a, Format.formatter, unit, unit) format4 -> 'a
|
|
|
|
val log_error: ('a, Format.formatter, unit, unit) format4 -> 'a
|
2017-11-08 19:02:19 +04:00
|
|
|
val fatal_error: ('a, Format.formatter, unit, unit) format4 -> 'a
|
2016-09-08 21:13:10 +04:00
|
|
|
|
|
|
|
val lwt_debug: ('a, Format.formatter, unit, unit Lwt.t) format4 -> 'a
|
|
|
|
val lwt_log_info: ('a, Format.formatter, unit, unit Lwt.t) format4 -> 'a
|
|
|
|
val lwt_log_notice: ('a, Format.formatter, unit, unit Lwt.t) format4 -> 'a
|
|
|
|
val lwt_warn: ('a, Format.formatter, unit, unit Lwt.t) format4 -> 'a
|
|
|
|
val lwt_log_error: ('a, Format.formatter, unit, unit Lwt.t) format4 -> 'a
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
module Core : LOG
|
|
|
|
module Net : LOG
|
|
|
|
module RPC : LOG
|
|
|
|
module Db : LOG
|
|
|
|
module Updater : LOG
|
|
|
|
module Node : sig
|
|
|
|
module State : LOG
|
|
|
|
module Validator : LOG
|
|
|
|
module Prevalidator : LOG
|
|
|
|
module Discoverer : LOG
|
|
|
|
module Worker : LOG
|
|
|
|
module Main : LOG
|
|
|
|
end
|
|
|
|
module Client : sig
|
|
|
|
module Blocks : LOG
|
2017-11-01 19:42:37 +04:00
|
|
|
module Baking : LOG
|
2016-09-08 21:13:10 +04:00
|
|
|
module Endorsement : LOG
|
|
|
|
module Revelation : LOG
|
|
|
|
module Denunciation : LOG
|
|
|
|
end
|
|
|
|
|
|
|
|
module Make(S: sig val name: string end) : LOG
|
|
|
|
|
2017-01-23 14:09:36 +04:00
|
|
|
type level = Lwt_log_core.level =
|
|
|
|
| Debug
|
2017-11-13 19:34:00 +04:00
|
|
|
(** Debugging message. They can be automatically removed by the
|
|
|
|
syntax extension. *)
|
2017-01-23 14:09:36 +04:00
|
|
|
| Info
|
2017-11-13 19:34:00 +04:00
|
|
|
(** Informational message. Suitable to be displayed when the
|
|
|
|
program is in verbose mode. *)
|
2017-01-23 14:09:36 +04:00
|
|
|
| Notice
|
2017-11-13 19:34:00 +04:00
|
|
|
(** Same as {!Info}, but is displayed by default. *)
|
2017-01-23 14:09:36 +04:00
|
|
|
| Warning
|
2017-11-13 19:34:00 +04:00
|
|
|
(** Something strange happend *)
|
2017-01-23 14:09:36 +04:00
|
|
|
| Error
|
2017-11-13 19:34:00 +04:00
|
|
|
(** An error message, which should not means the end of the
|
|
|
|
program. *)
|
2017-01-23 14:09:36 +04:00
|
|
|
| Fatal
|
|
|
|
|
|
|
|
type template = Lwt_log.template
|
|
|
|
val default_template : template
|
|
|
|
|
|
|
|
val level_encoding : level Data_encoding.t
|
|
|
|
|
2017-01-30 22:10:16 +04:00
|
|
|
module Output : sig
|
|
|
|
type t =
|
|
|
|
| Null
|
|
|
|
| Stdout
|
|
|
|
| Stderr
|
|
|
|
| File of string
|
|
|
|
| Syslog of Lwt_log.syslog_facility
|
2017-01-23 14:09:36 +04:00
|
|
|
|
2017-01-30 22:10:16 +04:00
|
|
|
val encoding : t Data_encoding.t
|
|
|
|
val of_string : string -> t option
|
|
|
|
val to_string : t -> string
|
|
|
|
val pp : Format.formatter -> t -> unit
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
val init: ?template:template -> Output.t -> unit Lwt.t
|
2016-09-08 21:13:10 +04:00
|
|
|
|
2017-11-08 19:02:19 +04:00
|
|
|
val close: unit -> unit Lwt.t
|
|
|
|
|
2017-01-30 22:10:16 +04:00
|
|
|
val sections : string list ref
|