feat: print queue size more often
Eric Davis 1 year ago 24686254 2af3617a
··· 157 157 if err != nil { 158 158 log.Printf("failed to begin transaction: %v\n", err) 159 159 } 160 160 + } 160 161 162 162 + if eventCount%2500 == 0 { 161 163 log.Printf("queue size: %d\n", queue.Size()) 162 164 } 163 165 }