forked from beamspirit/bigwig
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsys.config
More file actions
21 lines (19 loc) · 711 Bytes
/
sys.config
File metadata and controls
21 lines (19 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[
%% SASL config
{sasl, [
%{sasl_error_logger, {file, "log/sasl-error.log"}},
{errlog_type, error},
{error_logger_mf_dir, "log/sasl"}, % Log directory
{error_logger_mf_maxbytes, 10485760}, % 10 MB max file size
{error_logger_mf_maxfiles, 5} % 5 files max
]},
{lager, [
{async_threshold, 20},
{async_threshold_window, 5},
{handlers, [
{lager_console_backend, info},
{lager_file_backend, [{file, "error.log"}, {level, error}]},
{lager_file_backend, [{file, "console.log"}, {level, info}]}
]}
]}
].