From 63168c8b79b3e9df6f9a18204337f523adf31f56 Mon Sep 17 00:00:00 2001
From: fireba11 <github@enlightning.de>
Date: Mon, 19 Apr 2021 19:25:40 +0200
Subject: [PATCH] reduce max ligfile size to 1GB and # of files to 10 (so 10GB
 total log size

---
 .../config/freeswitch/conf/autoload_configs/logfile.conf.xml  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bbb-voice-conference/config/freeswitch/conf/autoload_configs/logfile.conf.xml b/bbb-voice-conference/config/freeswitch/conf/autoload_configs/logfile.conf.xml
index d9e9a2eb05..929dbb06f1 100644
--- a/bbb-voice-conference/config/freeswitch/conf/autoload_configs/logfile.conf.xml
+++ b/bbb-voice-conference/config/freeswitch/conf/autoload_configs/logfile.conf.xml
@@ -9,10 +9,10 @@
         <!-- File to log to -->
 	<!--<param name="logfile" value="/var/log/freeswitch.log"/>-->
         <!-- At this length in bytes rotate the log file (0 for never) -->
-        <param name="rollover" value="1048576000"/>
+        <param name="rollover" value="1073741824"/>
 		<!-- Maximum number of log files to keep before wrapping -->
 		<!-- If this parameter is enabled, the log filenames will not include a date stamp -->
-		<param name="maximum-rotate" value="32"/>
+		<param name="maximum-rotate" value="10"/>
         <!-- Prefix all log lines by the session's uuid  -->
         <param name="uuid" value="true" />
       </settings>
-- 
GitLab