Skip to content

Commit 8e36f5e

Browse files
authored
Remove double colon in panic message
1 parent c1dab7d commit 8e36f5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dataloader.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ func (b *batcher) batch(originalContext context.Context) {
426426
const size = 64 << 10
427427
buf := make([]byte, size)
428428
buf = buf[:runtime.Stack(buf, false)]
429-
log.Printf("Dataloader: Panic received in batch function:: %v\n%s", panicErr, buf)
429+
log.Printf("Dataloader: Panic received in batch function: %v\n%s", panicErr, buf)
430430
}
431431
}()
432432
items = b.batchFn(ctx, keys)

0 commit comments

Comments
 (0)