change default InformationVerbosity to 2
This commit is contained in:
@@ -164,7 +164,7 @@ public class Config
|
||||
// client-side
|
||||
[ProtoMember(29)]
|
||||
[ConfigCommand(serverSide: false, Min = 0, Max = 4)]
|
||||
public int InformationVerbosity { get; set; } = 1;
|
||||
public int InformationVerbosity { get; set; } = 2;
|
||||
|
||||
[ProtoMember(44)]
|
||||
[ConfigCommand(serverSide: false)]
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
"code": "InformationVerbosity",
|
||||
"comment": "config-desc-InformationVerbosity",
|
||||
"type": "int",
|
||||
"default": 1,
|
||||
"default": 2,
|
||||
"range": {
|
||||
"min": 0,
|
||||
"max": 4
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
## 1) ClientSide mode
|
||||
- Server: `InformationVerbosityServerSideType=ClientSide`, `InformationVerbosityServer=4`
|
||||
- Client: `InformationVerbosity=1`
|
||||
- Expected: client uses `1`
|
||||
- Client: `InformationVerbosity=2`
|
||||
- Expected: client uses `2`
|
||||
|
||||
## 2) ServerRecommended mode (override OFF)
|
||||
- Server: `InformationVerbosityServerSideType=ServerRecommended`, `InformationVerbosityServer=4`
|
||||
@@ -12,11 +12,11 @@
|
||||
|
||||
## 3) ServerRecommended mode (override ON)
|
||||
- Same as above, but `DisableServerRecommended=true`
|
||||
- Expected: client uses `1`
|
||||
- Expected: client uses `2`
|
||||
|
||||
## 4) ServerForced mode
|
||||
- Server: `InformationVerbosityServerSideType=ServerForced`, `InformationVerbosityServer=4`
|
||||
- Client: `InformationVerbosity=1`, `DisableServerRecommended=true`
|
||||
- Client: `InformationVerbosity=2`, `DisableServerRecommended=true`
|
||||
- Expected: client uses `4`
|
||||
|
||||
## 5) Client-side settings stay client-side
|
||||
|
||||
Reference in New Issue
Block a user