本文主要说sasl错误日志
配置:elog.config
[{sasl, [{sasl_error_logger, false}, {errlog_type, error}, {error_logger_mf_dir, "/data/my_sasl/log"}, {error_logger_mf_maxbytes, 10485760}, {error_logger_maxfiles, 10} ] }].
使用方式:
erl -name [email protected] -config elog
上面的配置实际上可以分为两组
1).输出到控制台或者单个文件sasl_error_logger 、errlog_type
这组配置对sasl_report_tty_h、sasl_report_file_h这两个日志处理器有效
sasl_error_logger false|tty|{file,File}
errolog_type error|progress|all
2).输出到循环日志文件
error_logger_mf_dir 日志目录
error_logger_mf_maxbytes 日志文件大小
error_logger_mf_maxfiles 日志文件个数
最后,循环日志要用rb工具来查看,很不方便呢。
所以,我觉得还不如自己来写个日志记录工具
具体想法:
1,error_logger:add_report_handler(common_logger_h,"")
common_logger_h 是一个gen_event
2,gen_event:notify(error_logger, LoggerMsg)