References
| debug/1 | Output kind of 'Debug log'. |
| error/1 | Output kind of 'Error log'. |
| fatal/1 | Output kind of 'Fatal log'. |
| format/2 | Format a log message. |
| info/1 | Output kind of 'Information log'. |
| new/2 | Create loggers for message logs. |
| new/3 | |
| update_log_level/1 | Update the log level of the info/error logger. |
| warn/1 | Output kind of 'Warning log'. |
debug(Log) -> ok
Log = #message_log{}
Output kind of 'Debug log'
error(Log) -> ok
Log = #message_log{}
Output kind of 'Error log'
fatal(Log) -> ok
Log = #message_log{}
Output kind of 'Fatal log'
format(Type, Log) -> string()
Type = atom()Log = #message_log{}
Format a log message
info(Log) -> ok
Log = #message_log{}
Output kind of 'Information log'
new(RootPath, Level) -> ok
RootPath = string()Level = integer()
Create loggers for message logs
new(RootPath, Level, Loggers) -> ok
RootPath = string()Level = integer()Loggers = [{atom(), log_appender()}]
Update the log level of the info/error logger
warn(Log) -> ok
Log = #message_log{}
Output kind of 'Warning log'
Generated by EDoc