diff options
| author | Ruslan Teliuk <ruslantproductengine@lindenlab.com> | 2018-11-27 17:45:45 +0200 | 
|---|---|---|
| committer | Ruslan Teliuk <ruslantproductengine@lindenlab.com> | 2018-11-27 17:45:45 +0200 | 
| commit | 4ab4c4498a04576a3cddf3533359a15a636b53b6 (patch) | |
| tree | 064d6b7b40927a4b87803d6daf7f8db1a846ede6 /indra/newview/app_settings | |
| parent | acc86a9139872e182fbeb5b9fc7daa12c5d2c029 (diff) | |
| parent | c21396181b090b626d7a9f989bcead2e517bb75f (diff) | |
Merged lindenlab/viewer-cougar into default
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 657baf016b..688bcb8298 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> | 
