[TT-7099] [Customer FR] Send info and debug messages to stdout not stderr - #1024
Open
shults wants to merge 1 commit into
Open
[TT-7099] [Customer FR] Send info and debug messages to stdout not stderr#1024shults wants to merge 1 commit into
shults wants to merge 1 commit into
probelabs / Visor: architecture
succeeded
Jul 28, 2026 in 23s
✅ Check Passed (Warnings Found)
architecture check passed. Found 1 warning, but fail_if condition was not met.
Details
📊 Summary
- Total Issues: 1
- Warning Issues: 1
🔍 Failure Condition Results
Passed Conditions
- global_fail_if: Condition passed
Issues by Category
Architecture (1)
⚠️ serializer/serializer.go:42 - Thecase MSGP_SERIALIZERwithfallthroughis redundant. Thedefaultcase already provides the desired behavior forMSGP_SERIALIZERand any other unspecified serializer type. This can be simplified by removing the explicit case forMSGP_SERIALIZER.
Powered by Visor from Probelabs
💡 TIP: You can chat with Visor using /visor ask <your question>
Annotations
Check warning on line 44 in serializer/serializer.go
probelabs / Visor: architecture
architecture Issue
The `case MSGP_SERIALIZER` with `fallthrough` is redundant. The `default` case already provides the desired behavior for `MSGP_SERIALIZER` and any other unspecified serializer type. This can be simplified by removing the explicit case for `MSGP_SERIALIZER`.
Raw output
Remove the `case MSGP_SERIALIZER:` and `fallthrough` to simplify the switch statement, as the `default` case handles this logic.
Loading