You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Before OTP 21, error_logger is the only logger provided by default and used by OTP. The result is when Yaws report.log is enabled (default) most logs are captured.
The situation changed since OTP 21. error_logger is now the legacy logger and captures only logs produced by error_logger. Most of OTP has migrated to the new logger. As times goes by so will more and more 3rd party apps while error_logger is being phased out. As a result report.log is becoming less useful capturing a shrinking subset of logs.
I have to disable report.log on OTP 21 and use logger so that no logs go unnoticed.
The text was updated successfully, but these errors were encountered:
@leoliu can you provide an example of information that in older Erlang/OTP versions would make it into report.log but is no longer there with version 21 or newer? I'm trying to figure out how to tackle this issue, and more details would be helpful. Thanks in advance.
Before OTP 21, error_logger is the only logger provided by default and used by OTP. The result is when Yaws report.log is enabled (default) most logs are captured.
The situation changed since OTP 21. error_logger is now the legacy logger and captures only logs produced by
error_logger
. Most of OTP has migrated to the newlogger
. As times goes by so will more and more 3rd party apps whileerror_logger
is being phased out. As a resultreport.log
is becoming less useful capturing a shrinking subset of logs.I have to disable report.log on OTP 21 and use
logger
so that no logs go unnoticed.The text was updated successfully, but these errors were encountered: