Skip to content

Commit ba92e0b

Browse files
committed
removed debug statements
1 parent ea61c97 commit ba92e0b

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

wsapi/wsapi.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -327,13 +327,10 @@ func handleEntryBlock(ctx *web.Context, keymr string) {
327327
estack := make([]entryaddr, 0)
328328
for _, v := range block.Body.EBEntries {
329329
if n, exist := mins[v.String()]; exist {
330-
fmt.Println("DEBUG: found minute marker", n)
331330
// the entry is a minute marker. add time to all of the
332331
// previous entries for the minute
333332
t := e.Header.TimeStamp + 60 * uint32(n)
334-
fmt.Println("DEBUG: new timestamp is", t)
335333
for _, w := range estack {
336-
fmt.Println("DEBUG: adding timestamp to entry", t, w)
337334
w.TimeStamp = t
338335
e.EntryList = append(e.EntryList, w)
339336
}

0 commit comments

Comments
 (0)