Skip to content

Commit

Permalink
change error log into debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
orishoshan committed Dec 4, 2023
1 parent 62743db commit adbb5ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mapper/pkg/resolvers/schema.resolvers.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ func (r *mutationResolver) ReportSocketScanResults(ctx context.Context, results
for _, socketScanItem := range results.Results {
srcSvcIdentity, err := r.discoverSrcIdentity(ctx, socketScanItem)
if err != nil {
logrus.WithError(err).Errorf("could not discover src identity for '%s'", socketScanItem.SrcIP)
logrus.WithError(err).Debugf("could not discover src identity for '%s'", socketScanItem.SrcIP)
continue
}
for _, dest := range socketScanItem.Destinations {
Expand Down

0 comments on commit adbb5ab

Please sign in to comment.