diff options
author | AndreyL ProductEngine <alihatskiy@productengine.com> | 2018-11-14 22:47:31 +0200 |
---|---|---|
committer | AndreyL ProductEngine <alihatskiy@productengine.com> | 2018-11-14 22:47:31 +0200 |
commit | c21396181b090b626d7a9f989bcead2e517bb75f (patch) | |
tree | c543941ee817a5b5952ff670d8ae03cd4663bd88 /indra/newview/app_settings | |
parent | 62085f9f7904aa20406aa4f0122065aec3a786ee (diff) | |
parent | 8558ce5c600b810356010ba3cd6d534ef22f4081 (diff) |
Merged in lindenlab/viewer-release
Diffstat (limited to 'indra/newview/app_settings')
-rw-r--r-- | indra/newview/app_settings/logcontrol.xml | 17 | ||||
-rw-r--r-- | indra/newview/app_settings/settings.xml | 88 |
2 files changed, 105 insertions, 0 deletions
diff --git a/indra/newview/app_settings/logcontrol.xml b/indra/newview/app_settings/logcontrol.xml index 8ced81fdb3..482012cdd6 100644 --- a/indra/newview/app_settings/logcontrol.xml +++ b/indra/newview/app_settings/logcontrol.xml @@ -2,6 +2,22 @@ <map> <!-- default-level can be ALL, DEBUG, INFO, WARN, ERROR, or NONE --> <key>default-level</key> <string>INFO</string> + <key>print-location</key> <boolean>false</boolean> + <key>log-always-flush</key> <boolean>true</boolean> + <!-- All log types are enabled by default. Can be toggled individually; + bitwise-or all the ones you want to enable. + Log types and their masks are: + + 1 - RecordToSyslog (not used by viewer) + 2 - RecordToFile (SecondLife.log) + 4 - RecordToStderr (this will appear in the console window, if there is one) + 8 - RecordToFixedBuffer (viewer debug console) + 16 - RecordToWinDebug (on windows, output to VS IDE window) + + For example, value of 10 = 2|8 would enable logging only to SecondLife.log and the viewer debug console. + Note: RecordToFile is always enabled in release builds. + --> + <key>enabled-log-types-mask</key> <integer>255</integer> <key>settings</key> <array> <!-- Suppress anything but ERROR for some very verbose components --> @@ -50,6 +66,7 @@ <key>tags</key> <array> <!-- sample entry for debugging specific items + <string>AnimatedObjects</string> <string>Avatar</string> <string>Inventory</string> <string>SceneLoadTiming</string> diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml index 8e8cce5787..3ad8b6cded 100644 --- a/indra/newview/app_settings/settings.xml +++ b/indra/newview/app_settings/settings.xml @@ -2182,6 +2182,94 @@ <key>Value</key> <string /> </map> + <key>DebugAnimatedObjects</key> + <map> + <key>Comment</key> + <string>Show info related to animated objects</string> + <key>Persist</key> + <integer>1</integer> + <key>Type</key> + <string>Boolean</string> + <key>Value</key> + <integer>0</integer> + </map> + <key>DebugObjectLODs</key> + <map> + <key>Comment</key> + <string>Show info related to lod calculations for attached or animated objects</string> + <key>Persist</key> + <integer>1</integer> + <key>Type</key> + <string>Boolean</string> + <key>Value</key> + <integer>0</integer> + </map> + <key>AnimatedObjectsIgnoreLimits</key> + <map> + <key>Comment</key> + <string>Ignore server-enforced limits on animated objects. This is only useful for server testing.</string> + <key>Persist</key> + <integer>1</integer> + <key>Type</key> + <string>Boolean</string> + <key>Value</key> + <integer>0</integer> + </map> + <key>AnimatedObjectsAllowLeftClick</key> + <map> + <key>Comment</key> + <string>Allow left-click interaction with animated objects. Uncertain how much performance impact this will have.</string> + <key>Persist</key> + <integer>1</integer> + <key>Type</key> + <string>Boolean</string> + <key>Value</key> + <integer>0</integer> + </map> + <key>AnimatedObjectsGlobalScale</key> + <map> + <key>Comment</key> + <string>Temporary testing: allow an extra scale factor to be forced on animated objects.</string> + <key>Persist</key> + <integer>1</integer> + <key>Type</key> + <string>F32</string> + <key>Value</key> + <real>1.00</real> + </map> + <key>AnimatedObjectsMaxLegalOffset</key> + <map> + <key>Comment</key> + <string>Max visual offset between object position and rendered position</string> + <key>Persist</key> + <integer>1</integer> + <key>Type</key> + <string>F32</string> + <key>Value</key> + <real>3.0</real> + </map> + <key>AnimatedObjectsMaxLegalSize</key> + <map> + <key>Comment</key> + <string>Max bounding box size for animated object's rendered position</string> + <key>Persist</key> + <integer>1</integer> + <key>Type</key> + <string>F32</string> + <key>Value</key> + <real>64.0</real> + </map> + <key>AvatarBoundingBoxComplexity</key> + <map> + <key>Comment</key> + <string>How many aspects to consider for avatar bounding box</string> + <key>Persist</key> + <integer>1</integer> + <key>Type</key> + <string>S32</string> + <key>Value</key> + <integer>3</integer> + </map> <key>DebugAvatarAppearanceMessage</key> <map> <key>Comment</key> |