For logging activity of an Erlang/OTP application, do you simply use a wrapper over disk_log
or some other libraries?
相关问题
- I want to trace logs using a Macro multi parameter
- Error message 'No handlers could be found for
- convert logback.xml to log4j.properties
- Django management command doesn't show logging
- apache modules ap_log_perror is at a different lev
相关文章
- how do I log requests and responses for debugging
- Android Studio doesn't display logs by package
- Stacktrace does not print in Glassfish 4.1 Cluster
- How do I modify a record in erlang?
- Out of curiosity — why don't logging APIs impl
- Laravel log file based on date
- Java -How to get logger to work in shutdown hook?
- Check active timers in Erlang
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.
I've also found:
There is another option named lager from basho.
https://github.com/siberian-fast-food/alogger
Two libraries I've found: http://code.google.com/p/erlslug/ and http://github.com/ahmednawras/log4erl