Skip to content

Commit 8d5ad55

Browse files
committed
remove debug logging on startup
1 parent aa62df5 commit 8d5ad55

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

icq-relayer/pkg/types/config.go

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package types
22

33
import (
4-
"fmt"
54
"log"
65
"maps"
76
"math/rand"
@@ -165,7 +164,6 @@ func DistributeConfigs(N, R, seed int, configs []string) map[int][]string {
165164

166165
r := rand.New(rand.NewSource(int64(seed)))
167166
r.Shuffle(len(configPool), func(i, j int) { configPool[i], configPool[j] = configPool[j], configPool[i] })
168-
fmt.Println("Shuffled", configPool)
169167
for i, config := range configPool {
170168
node := i % N // Ensures an even spread
171169
nodeConfigs[node] = append(nodeConfigs[node], config)

0 commit comments

Comments
 (0)