core/txpool: convert lock acquire log to debug

This commit is contained in:
Manav Darji 2023-08-24 11:41:42 +05:30
parent 3d7639cc26
commit 9eb9bfe181

View file

@ -165,7 +165,7 @@ func (m *sortedMap) reheap(withRlock bool) {
if withRlock {
m.m.RLock()
log.Info("[DEBUG] Acquired lock over txpool map while performing reheap")
log.Debug("Acquired lock over txpool map while performing reheap")
}
for nonce := range m.items {