Skip to content

Commit c360094

Browse files
authored
fix: remove unnecessary print statement (#1852)
1 parent f553a97 commit c360094

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

plugins/telemetry/vppcalls/vpp2101/telemetry_vppcalls.go

-1
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,6 @@ func (h *TelemetryHandler) GetThreads(ctx context.Context) (*vppcalls.ThreadsInf
278278
}
279279
var items []vppcalls.ThreadsItem
280280
for _, thread := range threads {
281-
fmt.Printf("thread: %v", thread)
282281
items = append(items, vppcalls.ThreadsItem{
283282
Name: thread.Name,
284283
ID: thread.ID,

plugins/telemetry/vppcalls/vpp2106/telemetry_vppcalls.go

-1
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,6 @@ func (h *TelemetryHandler) GetThreads(ctx context.Context) (*vppcalls.ThreadsInf
278278
}
279279
var items []vppcalls.ThreadsItem
280280
for _, thread := range threads {
281-
fmt.Printf("thread: %v", thread)
282281
items = append(items, vppcalls.ThreadsItem{
283282
Name: thread.Name,
284283
ID: thread.ID,

plugins/telemetry/vppcalls/vpp2202/telemetry_vppcalls.go

-1
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,6 @@ func (h *TelemetryHandler) GetThreads(ctx context.Context) (*vppcalls.ThreadsInf
278278
}
279279
var items []vppcalls.ThreadsItem
280280
for _, thread := range threads {
281-
fmt.Printf("thread: %v", thread)
282281
items = append(items, vppcalls.ThreadsItem{
283282
Name: thread.Name,
284283
ID: thread.ID,

0 commit comments

Comments
 (0)