aboutsummaryrefslogtreecommitdiffstats
path: root/lib/sasl/src/sasl_report_file_h.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2015-05-29 10:52:15 +0200
committerBjörn Gustavsson <[email protected]>2015-05-29 10:52:15 +0200
commit3f652961917964b1f47a0ac62609860691bd9099 (patch)
tree69849088246ab0d044ade9104f7bbf4c75d4bd9d /lib/sasl/src/sasl_report_file_h.erl
parent6635bfa7c480d33d43874f4b37b7c461ba04db23 (diff)
parent885ad5783c33d7f6115c5ad55c401102f10039d6 (diff)
downloadotp-3f652961917964b1f47a0ac62609860691bd9099.tar.gz
otp-3f652961917964b1f47a0ac62609860691bd9099.tar.bz2
otp-3f652961917964b1f47a0ac62609860691bd9099.zip
Merge branch 'saleyn/sasl/opening-modes/OTP-12778'
* saleyn/sasl/opening-modes/OTP-12778: Customize SASL error_logger file opening modes
Diffstat (limited to 'lib/sasl/src/sasl_report_file_h.erl')
-rw-r--r--lib/sasl/src/sasl_report_file_h.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sasl/src/sasl_report_file_h.erl b/lib/sasl/src/sasl_report_file_h.erl
index f42b4b5ff2..a5bd0ac055 100644
--- a/lib/sasl/src/sasl_report_file_h.erl
+++ b/lib/sasl/src/sasl_report_file_h.erl
@@ -28,9 +28,9 @@
handle_event/2, handle_call/2, handle_info/2,
terminate/2]).
-init({File, Type}) ->
+init({File, Modes, Type}) when is_list(Modes) ->
process_flag(trap_exit, true),
- case file:open(File, [write]) of
+ case file:open(File, Modes) of
{ok,Fd} ->
{ok, {Fd, File, Type}};
What ->