2012/1/11 eigenfunction <span dir="ltr"><<a href="mailto:emeka_1978@yahoo.com">emeka_1978@yahoo.com</a>></span><br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
This is my sasl config file:<br>
<br>
[{sasl, [<br>
{sasl_error_logger, {file,"d:/error_logs/errors.log"}},<br>
%%{errlog_type, error},<br>
{error_logger_mf_dir,"d:/error_logs" },<br>
{error_logger_mf_maxbytes,10485760},<br>
{error_logger_mf_maxfiles, 2}<br>
]}].<br>
<br>
Can someone plz explain to me why i am only getting progress reports<br>
in my file ?<br>
In my code i used error_logger:msg_error ... for error messages.<br>
thx.<br><br></blockquote><div>This configuration installs two error handlers. First, the sasl_error_logger variable installs sasl_report_file_h which according to the documentation "Formats and writes supervisor reports, crash report and progress report to a single file."</div>
<div><br></div><div>Next, the three error_logger_mf_* variables install log_mf_h, which writes *all* error logger events to a circular set of binary files in the directory specified by the error_logger_mf_dir variable (files will be named 1, 2 and index). These files can best be read with the report browser (rb) in the sasl application.</div>
<div><br></div><div>So, in your errors.log file you will only get supervisor, crash and progress reports, while the circular set of binary files will contain *all* reports, including errors...</div><div><br></div><div>Regards</div>
<div>/siri</div></div>