aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel <0xc0decafe@users.noreply.github.com>2016-02-01 11:32:55 +0100
committerDaniel <0xc0decafe@users.noreply.github.com>2016-02-01 11:32:55 +0100
commit2f5adc4a58abc876f4f048e93493a123b69b4cb9 (patch)
treeb6348b8e0020d1df5f6e01fd19ba54d34d923d29
parent614150349dfc9ddc1e6456962e91f40d9518c073 (diff)
added app.config configuring sasl for logfile usage.
-rw-r--r--app.config9
1 files changed, 9 insertions, 0 deletions
diff --git a/app.config b/app.config
new file mode 100644
index 0000000..ebb6b20
--- /dev/null
+++ b/app.config
@@ -0,0 +1,9 @@
+[
+{sasl, [
+ {sasl_error_logger, {file, "sasl.log"}},
+ {errlog_type, all},
+ {error_logger_mf_dir, "."}, % Log directory
+ {error_logger_mf_maxbytes, 10485760}, % 10 MB max file size
+ {error_logger_mf_maxfiles, 5} % 5 files max
+]}
+].