diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2021-05-07 12:17:41 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2021-05-07 12:17:41 +0200 |
commit | 326aec10afd9a86e4ad41dcd057d18c9c0ce7097 (patch) | |
tree | 23216569ad2c5a3fd8c8d8856138523e2cddce30 /device/peer.go | |
parent | efb881855098ac1d17cbe000b73d5ed31202c204 (diff) |
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>
Diffstat (limited to 'device/peer.go')
-rw-r--r-- | device/peer.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/device/peer.go b/device/peer.go index a063b91..005976b 100644 --- a/device/peer.go +++ b/device/peer.go @@ -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. |