Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/rawdb/freezer_table.go
Original file line number Diff line number Diff line change
Expand Up @@ -1037,7 +1037,7 @@ func (t *freezerTable) retrieveItems(start, count, maxBytes uint64) ([]byte, []i
// Ensure the start is written, not deleted from the tail, and that the
// caller actually wants something
if items <= start || hidden > start || count == 0 {
log.Info("retrieveItems out of bounds", "table name", t.name, "items", items, "hidden", hidden, "start", start, "count", count)
log.Debug("retrieveItems out of bounds", "table name", t.name, "items", items, "hidden", hidden, "start", start, "count", count)
return nil, nil, errOutOfBounds
}
if start+count > items {
Expand Down
Loading