Skip to content

Commit 1b88204

Browse files
committed
chore: remove redundant logoging
1 parent 734d794 commit 1b88204

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

internal/utils/reportutils/verify_drops.go

-8
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ import (
77

88
"github.com/ahmetb/go-linq/v3"
99
"github.com/pkg/errors"
10-
"github.com/rs/zerolog/log"
1110

12-
"github.com/penguin-statistics/backend-next/internal/constants"
1311
"github.com/penguin-statistics/backend-next/internal/models"
1412
"github.com/penguin-statistics/backend-next/internal/models/types"
1513
"github.com/penguin-statistics/backend-next/internal/repos"
@@ -108,12 +106,6 @@ func (d *DropVerifier) verifyDropItem(report *types.SingleReport, dropInfos []*m
108106
for _, dropInfo := range dropInfos {
109107
for _, drop := range report.Drops {
110108
if drop.DropType != dropInfo.DropType || drop.ItemID != int(dropInfo.ItemID.Int64) {
111-
log.Debug().
112-
Str("drop.DropType", drop.DropType).
113-
Str("dropInfo.DropType", dropInfo.DropType).
114-
Int("drop.ItemID", drop.ItemID).
115-
Int("dropInfo.ItemID", int(dropInfo.ItemID.Int64)).
116-
Msg("matching failed")
117109
continue
118110
}
119111
count := drop.Quantity

0 commit comments

Comments
 (0)