Skip to content

Commit 5908cfd

Browse files
authored
delete spammy debug logs (#851)
* delete spammy debug logs
1 parent 6da89dc commit 5908cfd

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

row/row.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -342,12 +342,10 @@ func (pb *Base) Flush() error {
342342
// to pb.commit, it should be written in the same order to the Sink.
343343
// TODO improve Annotatable architecture.
344344
func (pb *Base) Put(row Annotatable) {
345-
log.Println("append")
346345
rows := pb.buf.Append(row)
347346
pb.stats.Inc()
348347

349348
if rows != nil {
350-
log.Println("commit")
351349
pb.stats.MoveToPending(len(rows))
352350
// TODO consider making this asynchronous.
353351
err := pb.commit(rows)

0 commit comments

Comments
 (0)