Add UUID to the log file lines for each call in the log.

This commit is contained in:
Mark Crane
2013-07-06 03:40:00 +00:00
parent 1af2aaee58
commit 4edc1f011d
@@ -1,29 +1,29 @@
<configuration name="logfile.conf" description="File Logging"> <configuration name="logfile.conf" description="File Logging">
<settings> <settings>
<!-- true to auto rotate on HUP, false to open/close --> <!-- true to auto rotate on HUP, false to open/close -->
<param name="rotate-on-hup" value="true"/> <param name="rotate-on-hup" value="true"/>
</settings> </settings>
<profiles> <profiles>
<profile name="default"> <profile name="default">
<settings> <settings>
<!-- File to log to --> <!-- File to log to -->
<!--<param name="logfile" value="/var/log/freeswitch.log"/>--> <!--<param name="logfile" value="/var/log/freeswitch.log"/>-->
<!-- At this length in bytes rotate the log file (0 for never) --> <!-- At this length in bytes rotate the log file (0 for never) -->
<param name="rollover" value="10485760"/> <param name="rollover" value="10485760"/>
<!-- Maximum number of log files to keep before wrapping --> <!-- Maximum number of log files to keep before wrapping -->
<!-- If this parameter is enabled, the log filenames will not include a date stamp --> <!-- 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="32"/> -->
<!-- Uncomment to prefix all log lines by the session's uuid --> <!-- Uncomment to prefix all log lines by the session's uuid -->
<!-- <param name="uuid" value="true" /> --> <param name="uuid" value="true" />
</settings> </settings>
<mappings> <mappings>
<!-- <!--
name can be a file name, function name or 'all' name can be a file name, function name or 'all'
value is one or more of debug,info,notice,warning,err,crit,alert,all value is one or more of debug,info,notice,warning,err,crit,alert,all
Please see comments in console.conf.xml for more information Please see comments in console.conf.xml for more information
--> -->
<map name="all" value="debug,info,notice,warning,err,crit,alert"/> <map name="all" value="debug,info,notice,warning,err,crit,alert"/>
</mappings> </mappings>
</profile> </profile>
</profiles> </profiles>
</configuration> </configuration>