# HG changeset patch # User Sebastien Decugis # Date 1384240744 -28800 # Node ID 02c98b9fb2a468e333e144d4c7fb7f1e83e508c9 # Parent 4b511d9b3def97361d7a94e88b85ed3ee88763dd Updated documentation for dbg_msg_dumps diff -r 4b511d9b3def -r 02c98b9fb2a4 doc/freediameter.conf.sample --- a/doc/freediameter.conf.sample Mon Nov 11 15:30:26 2013 +0800 +++ b/doc/freediameter.conf.sample Tue Nov 12 15:19:04 2013 +0800 @@ -206,10 +206,16 @@ # The dbg_msg_dump.fdx extension allows you to tweak the way freeDiameter displays some # information about some events. This extension does not actually use a configuration file # but receives directly a parameter in the string passed to the extension. Here are some examples: -# LoadExtension = "dbg_msg_dump.fdx" : "0x1111"; # Removes all default hooks, very quiet even in case of errors. -# LoadExtension = "dbg_msg_dump.fdx" : "0x2222"; # Display all events with few details. -# LoadExtension = "dbg_msg_dump.fdx" : "0x80"; # Dump complete information about sent and received messages. -# See the top of extensions/dbg_msg/dump/dbg_msg.dump.c file for more details on the value. +## LoadExtension = "dbg_msg_dumps.fdx" : "0x1111"; # Removes all default hooks, very quiet even in case of errors. +## LoadExtension = "dbg_msg_dumps.fdx" : "0x2222"; # Display all events with few details. +## LoadExtension = "dbg_msg_dumps.fdx" : "0x0080"; # Dump complete information about sent and received messages. +# The four digits respectively control: connections, routing decisions, sent/received messages, errors. +# The values for each digit are: +# 0 - default - keep the default behavior +# 1 - quiet - remove any specific log +# 2 - compact - display only a summary of the information +# 4 - full - display the complete information on a single long line +# 8 - tree - display the complete information in an easier to read format spanning several lines. ##############################################################