-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
LOW Priority Bug Report for MiniUdmAsyncErrorTracing
Date: 2025-12-23T23:00:14.138Z
Priority: P2
Severity: LOW
Total Issues: 2
1. sample.go:21
Category: code_quality
fmt.Print found - should use proper logging
namespace := "default"
items, err := GetDeployments(clientset, ctx, namespace)
if err != nil {
fmt.Println(err)
} else {
for _, item := range items {
fmt.Printf("%+v\n", item)
2. sample.go:24
Category: code_quality
fmt.Print found - should use proper logging
fmt.Println(err)
} else {
for _, item := range items {
fmt.Printf("%+v\n", item)
}
}
}
Full report available in workflow artifacts.