eth, les, swarm: fix go vet issues sufraced by log15

This commit is contained in:
Péter Szilágyi
2017-02-22 14:56:09 +02:00
parent d4fd06c3dc
commit 61e6bb1247
8 changed files with 10 additions and 10 deletions

View File

@ -217,7 +217,7 @@ LOOP:
// if just switched to db mode and not quitting, then launch dbRead
// in a parallel go routine to send deliveries from db
if inDb == 0 && quit != nil {
log.Trace(fmt.Sprintf("syncDb[%v/%v] start dbRead"))
log.Trace(fmt.Sprintf("syncDb[%v/%v] start dbRead", self.key.Log(), self.priority))
go self.dbRead(true, counter, deliver)
}
inDb++