Private
Public Access
1
0

change default InformationVerbosity to 2

This commit is contained in:
2026-05-25 09:57:25 +02:00
parent 136826aa68
commit 3f928fa4bc
3 changed files with 6 additions and 6 deletions

View File

@@ -164,7 +164,7 @@ public class Config
// client-side // client-side
[ProtoMember(29)] [ProtoMember(29)]
[ConfigCommand(serverSide: false, Min = 0, Max = 4)] [ConfigCommand(serverSide: false, Min = 0, Max = 4)]
public int InformationVerbosity { get; set; } = 1; public int InformationVerbosity { get; set; } = 2;
[ProtoMember(44)] [ProtoMember(44)]
[ConfigCommand(serverSide: false)] [ConfigCommand(serverSide: false)]

View File

@@ -11,7 +11,7 @@
"code": "InformationVerbosity", "code": "InformationVerbosity",
"comment": "config-desc-InformationVerbosity", "comment": "config-desc-InformationVerbosity",
"type": "int", "type": "int",
"default": 1, "default": 2,
"range": { "range": {
"min": 0, "min": 0,
"max": 4 "max": 4

View File

@@ -2,8 +2,8 @@
## 1) ClientSide mode ## 1) ClientSide mode
- Server: `InformationVerbosityServerSideType=ClientSide`, `InformationVerbosityServer=4` - Server: `InformationVerbosityServerSideType=ClientSide`, `InformationVerbosityServer=4`
- Client: `InformationVerbosity=1` - Client: `InformationVerbosity=2`
- Expected: client uses `1` - Expected: client uses `2`
## 2) ServerRecommended mode (override OFF) ## 2) ServerRecommended mode (override OFF)
- Server: `InformationVerbosityServerSideType=ServerRecommended`, `InformationVerbosityServer=4` - Server: `InformationVerbosityServerSideType=ServerRecommended`, `InformationVerbosityServer=4`
@@ -12,11 +12,11 @@
## 3) ServerRecommended mode (override ON) ## 3) ServerRecommended mode (override ON)
- Same as above, but `DisableServerRecommended=true` - Same as above, but `DisableServerRecommended=true`
- Expected: client uses `1` - Expected: client uses `2`
## 4) ServerForced mode ## 4) ServerForced mode
- Server: `InformationVerbosityServerSideType=ServerForced`, `InformationVerbosityServer=4` - Server: `InformationVerbosityServerSideType=ServerForced`, `InformationVerbosityServer=4`
- Client: `InformationVerbosity=1`, `DisableServerRecommended=true` - Client: `InformationVerbosity=2`, `DisableServerRecommended=true`
- Expected: client uses `4` - Expected: client uses `4`
## 5) Client-side settings stay client-side ## 5) Client-side settings stay client-side