freeswitch/conf/vanilla/autoload_configs/syslog.conf.xml
Travis Cross 3a595f278a Log channel UUID by default
We want people to have this on so that when we're looking at reported
log files we can tell what is going on.
2014-01-22 23:43:03 +00:00

19 lines
689 B
XML

<configuration name="syslog.conf" description="Syslog Logger">
<!-- SYSLOG -->
<!-- emerg - system is unusable -->
<!-- alert - action must be taken immediately -->
<!-- crit - critical conditions -->
<!-- err - error conditions -->
<!-- warning - warning conditions -->
<!-- notice - normal, but significant, condition -->
<!-- info - informational message -->
<!-- debug - debug-level message -->
<settings>
<param name="facility" value="user"/>
<param name="ident" value="freeswitch"/>
<param name="loglevel" value="warning"/>
<!-- log uuids in syslogs -->
<param name="uuid" value="true"/>
</settings>
</configuration>