Skip to content

[TT-7099] [Customer FR] Send info and debug messages to stdout not stderr - #1024

Open
shults wants to merge 1 commit into
masterfrom
TT-7099-customer-fr-send-info-and-debug-messages-to-stdout-not-stderr
Open

[TT-7099] [Customer FR] Send info and debug messages to stdout not stderr#1024
shults wants to merge 1 commit into
masterfrom
TT-7099-customer-fr-send-info-and-debug-messages-to-stdout-not-stderr

add ability to inject logger

958a99e
Select commit
Loading
Failed to load commit list.
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 - 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.

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

See this annotation in the file changed.

@probelabs 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.