module Lwt_log_js:sig
..end
include Lwt_log_core
val console : Lwt_log.logger
val log : ?inspect:'v ->
?exn:exn ->
?section:section ->
?location:string * int * int ->
?logger:logger -> level:level -> string -> unit Lwt.t
log ?section ?logger ~level message
logs a message.
section
defaults to Section.main
. If logger
is not
specified, then the default one is used instead (see
default
).
If exn
is provided, then its string representation
(= Printexc.to_string exn
) will be append to the message, and if
possible the backtrace will also be logged.
If inspect
is provided, it will be append to the message.
location
contains the location of the logging directive, it is
of the form (file_name, line, column)
.
val log_f : ?inspect:'v ->
?exn:exn ->
?section:section ->
?location:string * int * int ->
?logger:logger ->
level:level -> ('a, unit, string, unit Lwt.t) Pervasives.format4 -> 'a
log_f
is the same as log
except that it takes a format
stringval ign_log : ?inspect:'v ->
?exn:exn ->
?section:section ->
?location:string * int * int ->
?logger:logger -> level:level -> string -> unit
Lwt_log_js.log
but ignore the resulting thread.val ign_log_f : ?inspect:'v ->
?exn:exn ->
?section:section ->
?location:string * int * int ->
?logger:logger ->
level:level -> ('a, unit, string, unit) Pervasives.format4 -> 'a
Lwt_log_js.log_f
but ignore the resulting thread.Lwt_log_js.log
except that their
name determines which level is used.
For example info msg
is the same as log ~level:Info msg
.
val debug : ?inspect:'v ->
?exn:exn ->
?section:section ->
?location:string * int * int -> ?logger:logger -> string -> unit Lwt.t
val debug_f : ?inspect:'v ->
?exn:exn ->
?section:section ->
?location:string * int * int ->
?logger:logger -> ('a, unit, string, unit Lwt.t) Pervasives.format4 -> 'a
val ign_debug : ?inspect:'v ->
?exn:exn ->
?section:section ->
?location:string * int * int -> ?logger:logger -> string -> unit
val ign_debug_f : ?inspect:'v ->
?exn:exn ->
?section:section ->
?location:string * int * int ->
?logger:logger -> ('a, unit, string, unit) Pervasives.format4 -> 'a
val info : ?inspect:'v ->
?exn:exn ->
?section:section ->
?location:string * int * int -> ?logger:logger -> string -> unit Lwt.t
val info_f : ?inspect:'v ->
?exn:exn ->
?section:section ->
?location:string * int * int ->
?logger:logger -> ('a, unit, string, unit Lwt.t) Pervasives.format4 -> 'a
val ign_info : ?inspect:'v ->
?exn:exn ->
?section:section ->
?location:string * int * int -> ?logger:logger -> string -> unit
val ign_info_f : ?inspect:'v ->
?exn:exn ->
?section:section ->
?location:string * int * int ->
?logger:logger -> ('a, unit, string, unit) Pervasives.format4 -> 'a
val notice : ?inspect:'v ->
?exn:exn ->
?section:section ->
?location:string * int * int -> ?logger:logger -> string -> unit Lwt.t
val notice_f : ?inspect:'v ->
?exn:exn ->
?section:section ->
?location:string * int * int ->
?logger:logger -> ('a, unit, string, unit Lwt.t) Pervasives.format4 -> 'a
val ign_notice : ?inspect:'v ->
?exn:exn ->
?section:section ->
?location:string * int * int -> ?logger:logger -> string -> unit
val ign_notice_f : ?inspect:'v ->
?exn:exn ->
?section:section ->
?location:string * int * int ->
?logger:logger -> ('a, unit, string, unit) Pervasives.format4 -> 'a
val warning : ?inspect:'v ->
?exn:exn ->
?section:section ->
?location:string * int * int -> ?logger:logger -> string -> unit Lwt.t
val warning_f : ?inspect:'v ->
?exn:exn ->
?section:section ->
?location:string * int * int ->
?logger:logger -> ('a, unit, string, unit Lwt.t) Pervasives.format4 -> 'a
val ign_warning : ?inspect:'v ->
?exn:exn ->
?section:section ->
?location:string * int * int -> ?logger:logger -> string -> unit
val ign_warning_f : ?inspect:'v ->
?exn:exn ->
?section:section ->
?location:string * int * int ->
?logger:logger -> ('a, unit, string, unit) Pervasives.format4 -> 'a
val error : ?inspect:'v ->
?exn:exn ->
?section:section ->
?location:string * int * int -> ?logger:logger -> string -> unit Lwt.t
val error_f : ?inspect:'v ->
?exn:exn ->
?section:section ->
?location:string * int * int ->
?logger:logger -> ('a, unit, string, unit Lwt.t) Pervasives.format4 -> 'a
val ign_error : ?inspect:'v ->
?exn:exn ->
?section:section ->
?location:string * int * int -> ?logger:logger -> string -> unit
val ign_error_f : ?inspect:'v ->
?exn:exn ->
?section:section ->
?location:string * int * int ->
?logger:logger -> ('a, unit, string, unit) Pervasives.format4 -> 'a
val fatal : ?inspect:'v ->
?exn:exn ->
?section:section ->
?location:string * int * int -> ?logger:logger -> string -> unit Lwt.t
val fatal_f : ?inspect:'v ->
?exn:exn ->
?section:section ->
?location:string * int * int ->
?logger:logger -> ('a, unit, string, unit Lwt.t) Pervasives.format4 -> 'a
val ign_fatal : ?inspect:'v ->
?exn:exn ->
?section:section ->
?location:string * int * int -> ?logger:logger -> string -> unit
val ign_fatal_f : ?inspect:'v ->
?exn:exn ->
?section:section ->
?location:string * int * int ->
?logger:logger -> ('a, unit, string, unit) Pervasives.format4 -> 'a