package easy_logging
Install
dune-project
Dependency
Authors
Maintainers
Sources
md5=467a966433b97693e0c226a90b9b833e
sha512=d4b97a29225c454a2d8ed04495aa7ecd3b012d7258372be2450e9b672498ba24ce9a3079307e762e12948661bc1e104a90f167fabf60c212fe67b13d6c4edf51
doc/easy_logging/Easy_logging/Logging/class-logger/index.html
Class Logging.loggerSource
Attributes
Name of the logger:
- can be displayed in log messages.
- defines the logger place in the logging tree.
val mutable level : levelValue used to filter log messages.
val parent : logger optionThe optional parent of this logger.
Whether messages passed to this logger are propagated to its ancestors' handlers.
The list of functions used for dynamic tagging of messages.
Getters and setters
method set_level : level -> unitSets the log level of the logger instance.
Will add a tag to each log message, resulting from the call of the supplied fonction (called each time a message is logged)
Sets the propagate attribute, which decides whether messages passed to this logger are propagated to its ancestors' handlers.
Returns the list of handlers of the logger, recursing with parents handlers if propagate is true
method effective_level : levelReturns this logger level if it is not None, else searches amongst ancestors for the first defined level; returns NoLevel if no level can be found.
method internal_level : levelReturns the logger internal level.
Classic logging Methods
Each of these methods takes an optional string list of tags, then a set of parameters the way a printf function does. If the log level of the instance is low enough, a log item will be created theb passed to the handlers.
Example :
logger#warning "Unexpected value: %s" (to_string my_value)method flash : 'a. ?tags:string list -> ('a, unit, string, unit) format4 -> 'amethod error : 'a. ?tags:string list -> ('a, unit, string, unit) format4 -> 'amethod warning : 'a. ?tags:string list ->
('a, unit, string, unit) format4 ->
'amethod info : 'a. ?tags:string list -> ('a, unit, string, unit) format4 -> 'amethod trace : 'a. ?tags:string list -> ('a, unit, string, unit) format4 -> 'amethod debug : 'a. ?tags:string list -> ('a, unit, string, unit) format4 -> 'aLazy logging methods
Each of these methods takes a string lazy_t as an input (as well as the optional tags. If the log level of the instance is low enough, the lazy value will forced into a string, a log item will be created then passed to the handlers.
Example:
logger#ldebug (lazy (heavy_calculation () ))String logging methods
Each of these methods takes a string as an input (as well as the optional tags).
Example:
logger#sdebug string_variable