diff options
| -rw-r--r-- | src/rabbit.erl | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/rabbit.erl b/src/rabbit.erl index 473a218092..edcea1f712 100644 --- a/src/rabbit.erl +++ b/src/rabbit.erl @@ -88,9 +88,12 @@ status() -> rotate_logs(BinarySuffix) -> Suffix = binary_to_list(BinarySuffix), - log_rotation_result( - rotate_logs(error_log_location(wrapper), Suffix, rabbit_error_logger_file_h), - rotate_logs(sasl_log_location(), Suffix, rabbit_sasl_report_file_h)). + log_rotation_result(rotate_logs(error_log_location(wrapper), + Suffix, + rabbit_error_logger_file_h), + rotate_logs(sasl_log_location(), + Suffix, + rabbit_sasl_report_file_h)). %%-------------------------------------------------------------------- |
