mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-18 01:43:47 +00:00
swarm/storage: demote Info to Trace
This commit is contained in:
parent
51387aaea0
commit
cd54ac7c2c
1 changed files with 3 additions and 3 deletions
|
|
@ -290,7 +290,7 @@ func TestLDBStoreWithoutCollectGarbage(t *testing.T) {
|
|||
for i := 0; i < n; i++ {
|
||||
c := NewRandomChunk(chunkSize)
|
||||
chunks = append(chunks, c)
|
||||
log.Info("generate random chunk", "idx", i, "chunk", c)
|
||||
log.Trace("generate random chunk", "idx", i, "chunk", c)
|
||||
}
|
||||
|
||||
for i := 0; i < n; i++ {
|
||||
|
|
@ -395,7 +395,7 @@ func TestLDBStoreAddRemove(t *testing.T) {
|
|||
for i := 0; i < n; i++ {
|
||||
c := NewRandomChunk(chunkSize)
|
||||
chunks = append(chunks, c)
|
||||
log.Info("generate random chunk", "idx", i, "chunk", c)
|
||||
log.Trace("generate random chunk", "idx", i, "chunk", c)
|
||||
}
|
||||
|
||||
for i := 0; i < n; i++ {
|
||||
|
|
@ -457,7 +457,7 @@ func TestLDBStoreRemoveThenCollectGarbage(t *testing.T) {
|
|||
for i := 0; i < capacity; i++ {
|
||||
c := NewRandomChunk(chunkSize)
|
||||
chunks = append(chunks, c)
|
||||
log.Info("generate random chunk", "idx", i, "chunk", c)
|
||||
log.Trace("generate random chunk", "idx", i, "chunk", c)
|
||||
}
|
||||
|
||||
for i := 0; i < n; i++ {
|
||||
|
|
|
|||
Loading…
Reference in a new issue