*Subtract us from the peer count in debug

This commit is contained in:
Derrick Hammer 2022-12-17 10:38:14 -05:00
parent 8640dcdb6f
commit e5b0c92dac
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 3 additions and 1 deletions

View File

@ -492,7 +492,9 @@ export default class DHTCache extends EventEmitter {
this.emit("online", online);
this.log.debug(
`Online list updated: ${online.size} network peers online, ${offline.size} network peers offline and removed from DAG`
`Online list updated: ${online.size - 1} network peers online, ${
offline.size
} network peers offline and removed from DAG`
);
}