We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4010d3b commit 77df2baCopy full SHA for 77df2ba
outbox.go
@@ -20,8 +20,6 @@ func NewOutbox(storage Storage, producer Producer) Outbox {
20
}
21
22
func (o *outbox) Listen(ctx context.Context) {
23
- log.Println("initialize outbox process")
24
-
25
go o.deleteCheckedItems(ctx)
26
27
itemsFound := make(chan []Model)
@@ -43,7 +41,6 @@ func (o *outbox) Listen(ctx context.Context) {
43
41
44
42
for {
45
items, err := o.storage.ListAllItems(ctx)
46
- log.Printf("items found %v", items)
47
if err != nil {
48
log.Printf("outbox: error deleting checked items %v", err)
49
0 commit comments