Skip to content

Commit 07f793f

Browse files
authored
Merge pull request #60 from LindseyB/patch-1
Remove double colon in panic message
2 parents 81a076d + 8e36f5e commit 07f793f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dataloader.go

+1-1
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)