aboutsummaryrefslogtreecommitdiffstats
path: root/device/send.go
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2020-12-18 11:52:13 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2021-01-07 14:49:44 +0100
commitad73ee78e90823a92eacf7521173308a392e8323 (patch)
treedee2d7d87814569c6d0ebe00064a483f5e986283 /device/send.go
parentdevice: fix error shadowing before log print (diff)
downloadwireguard-go-ad73ee78e90823a92eacf7521173308a392e8323.tar.xz
wireguard-go-ad73ee78e90823a92eacf7521173308a392e8323.zip
device: add missing colon to error line
People are actually hitting this condition, so make it uniform. Also, change a printf into a println, to match the other conventions. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'device/send.go')
-rw-r--r--device/send.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/device/send.go b/device/send.go
index bc51fa6..c75d23e 100644
--- a/device/send.go
+++ b/device/send.go
@@ -174,7 +174,7 @@ func (peer *Peer) SendHandshakeInitiation(isRetry bool) error {
err = peer.SendBuffer(packet)
if err != nil {
- peer.device.log.Error.Println(peer, "- Failed to send handshake initiation", err)
+ peer.device.log.Error.Println(peer, "- Failed to send handshake initiation:", err)
}
peer.timersHandshakeInitiated()
@@ -212,7 +212,7 @@ func (peer *Peer) SendHandshakeResponse() error {
err = peer.SendBuffer(packet)
if err != nil {
- peer.device.log.Error.Println(peer, "- Failed to send handshake response", err)
+ peer.device.log.Error.Println(peer, "- Failed to send handshake response:", err)
}
return err
}