device: remove unusual ... in messages

We dont use ... in any other present progressive messages except these.

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
Jason A. Donenfeld 2021-05-07 12:17:41 +02:00
parent efb8818550
commit 326aec10af
1 changed files with 2 additions and 2 deletions

View File

@ -167,7 +167,7 @@ func (peer *Peer) Start() {
}
device := peer.device
device.log.Verbosef("%v - Starting...", peer)
device.log.Verbosef("%v - Starting", peer)
// reset routine state
peer.stopping.Wait()
@ -243,7 +243,7 @@ func (peer *Peer) Stop() {
return
}
peer.device.log.Verbosef("%v - Stopping...", peer)
peer.device.log.Verbosef("%v - Stopping", peer)
peer.timersStop()
// Signal that RoutineSequentialSender and RoutineSequentialReceiver should exit.