Debug Settings

Change Jaxer Log Level

Command line

This change applies only to the current session and doesn't persist:

telljaxermanager [-p mgr_admin_port] set pref:Jaxer.Core.LogLevel TRACE

This will change Jaxer logging to its most verbose level. The default is INFO. You can change it back with

telljaxermanager [-p mgr_admin_port] set pref:Jaxer.Core.LogLevel INFO

Permanently change the level

Edit the configuration file (<JaxerInstallDir>/jaxer/defaults/pref/Jaxer_prefs.js)

// This option sets the log level for Jaxer core.  Valid levels are:
// TRACE, DEBUG, INFO, WARN, ERROR, FATAL.
pref("Jaxer.Core.LogLevel", "INFO");

Making this change effective requires restarting JaxerManager.

Turn on protocol dumping

Command line

This change applies only to the current session and doesn't persist:

telljaxermanager [-p mgr_admin_port] set pref:Jaxer.dev.DumpProtocol true

This causes all network traffic to and from Jaxer be written to jaxer.log. Not surprisingly, it will slow the server down significantly. You can turn it off with

telljaxermanager [-p mgr_admin_port] set pref:Jaxer.dev.DumpProtocol false

Permanently change the level

Edit the configuration file (<JaxerInstallDir>/jaxer/defaults/pref/Jaxer_prefs.js)

pref("Jaxer.dev.DumpProtocol", true);

To turn it off

pref("Jaxer.dev.DumpProtocol", false);

Making this change effective requires restarting JaxerManager.