Debug SettingsChange Jaxer Log LevelCommand lineThis 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 levelEdit 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 dumpingCommand lineThis 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 levelEdit 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. |
