hello,<br><br>I'm sure this is another stupid question with an obvious answer, but I can't seem to get rotating logs to work. This is my log.config file:<br>[{sasl, [<br>            % tty for debugging, false for production<br>
            {sasl_error_logger, tty},<br>            <br>            % options: all, error, progress<br>            {errlog_type, all},<br>            <br>            {errlog_logger_mf_dir, "/Users/rapsey/workspace/erlang/logs"},<br>
            <br>            {errlog_logger_mf_maxbytes, 8388608},<br>            <br>            {errlog_logger_mf_maxfiles, 20}<br>        ]}].<br><br>The erl command: erl -boot start_sasl -config log<br>Nothing gets put in the logs directory.<br>
<br>If I change log.config to only use 1 log file:<br><br>[{sasl, [<br>            {sasl_error_logger, {file, "/Users/rapsey/workspace/erlang/logs/log"}}<br>        ]}].<br><br>Messages will be logged just fine.<br>
Anyone know what I'm forgetting?<br><br><br>thank you,<br>Sergej<br>