Skip to content

Commit 77df2ba

Browse files
committedDec 3, 2022
Remove log
1 parent 4010d3b commit 77df2ba

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed
 

‎outbox.go

-3
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ func NewOutbox(storage Storage, producer Producer) Outbox {
2020
}
2121

2222
func (o *outbox) Listen(ctx context.Context) {
23-
log.Println("initialize outbox process")
24-
2523
go o.deleteCheckedItems(ctx)
2624

2725
itemsFound := make(chan []Model)
@@ -43,7 +41,6 @@ func (o *outbox) Listen(ctx context.Context) {
4341

4442
for {
4543
items, err := o.storage.ListAllItems(ctx)
46-
log.Printf("items found %v", items)
4744
if err != nil {
4845
log.Printf("outbox: error deleting checked items %v", err)
4946
}

0 commit comments

Comments
 (0)
Please sign in to comment.