Skip to content

Commit

Permalink
Remove log statement used for debugging
Browse files Browse the repository at this point in the history
This commit removes logging that was added to assist in a debug session.
It should never have been committed.
  • Loading branch information
thallgren committed Mar 4, 2020
1 parent 7b93c61 commit 0505576
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions streamer/streamer.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package streamer

import (
"fmt"
"log"

"github.com/lyraproj/dgo/dgo"
"github.com/lyraproj/dgo/vf"
Expand Down Expand Up @@ -76,7 +75,6 @@ func (t *rdSerializer) Stream(value dgo.Value, consumer Consumer) {
if c.dedupLevel >= MaxDedup && !consumer.CanDoComplexKeys() {
c.dedupLevel = NoKeyDedup
}
log.Println(value.String())
c.emitData(value)
}

Expand Down

0 comments on commit 0505576

Please sign in to comment.