utils: remove debug print of all received networks on RADb

This commit is contained in:
WeebDataHoarder
2025-04-28 12:25:53 +02:00
parent b8bf35d4de
commit 61655b6a02

View File

@@ -69,7 +69,6 @@ func (db *RADb) query(fn func(n int, record []byte) error, queries ...string) er
for scanner.Scan() {
buf := bytes.Trim(scanner.Bytes(), "\r\n")
fmt.Println(string(buf))
if bytes.HasPrefix(buf, []byte("%")) || bytes.Equal(buf, []byte("C")) {
// end of record
break