https://github.com/siberian-fast-food/alogger
basho 还有另一个名为 lager 的选项。
There is another option named lager from basho.
我还发现:
I've also found:
我找到了两个库:http://code.google.com/p/erlslug/ 和 http://github.com/ahmednawras/log4erl
Two libraries I've found: http://code.google.com/p/erlslug/ and http://github.com/ahmednawras/log4erl
有标准错误日志记录应用程序 SASL http://www.erlang.org/doc/system_principles/ error_logging.html。
可以将其配置为将日志保存在磁盘上。
error_logger:info_report 示例用法:
2> error_logger:info_report([{tag1,data1},a_term,{tag2,data}]). =INFO REPORT==== 11-Aug-2005::13:55:09 === tag1: data1 a_term tag2: data ok 3> error_logger:info_report("Something strange happened"). =INFO REPORT==== 11-Aug-2005::13:55:36 === Something strange happened ok
当您需要不同的日志格式时,还有 log4erl。您可以在 erlyvideo 项目中查找它的实际用法。
There is standard error logging application SASL http://www.erlang.org/doc/system_principles/error_logging.html.
It can be configured to save logs on disk.
error_logger:info_report example usage:
Also there is log4erl when you need different log format. You can look for real usage of it in erlyvideo project.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(5)
https://github.com/siberian-fast-food/alogger
https://github.com/siberian-fast-food/alogger
basho 还有另一个名为 lager 的选项。
There is another option named lager from basho.
我还发现:
I've also found:
我找到了两个库:http://code.google.com/p/erlslug/ 和 http://github.com/ahmednawras/log4erl
Two libraries I've found: http://code.google.com/p/erlslug/ and http://github.com/ahmednawras/log4erl
有标准错误日志记录应用程序 SASL http://www.erlang.org/doc/system_principles/ error_logging.html。
可以将其配置为将日志保存在磁盘上。
error_logger:info_report 示例用法:
当您需要不同的日志格式时,还有 log4erl。您可以在 erlyvideo 项目中查找它的实际用法。
There is standard error logging application SASL http://www.erlang.org/doc/system_principles/error_logging.html.
It can be configured to save logs on disk.
error_logger:info_report example usage:
Also there is log4erl when you need different log format. You can look for real usage of it in erlyvideo project.