From e8cde53975219fb6cb26ba0a708e65f4f857067a Mon Sep 17 00:00:00 2001 From: Darien Raymond Date: Tue, 22 Nov 2016 08:23:03 +0100 Subject: [PATCH] fix tcp log --- transport/internet/tcp/dialer.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/transport/internet/tcp/dialer.go b/transport/internet/tcp/dialer.go index 0aa8a502..54bc2802 100644 --- a/transport/internet/tcp/dialer.go +++ b/transport/internet/tcp/dialer.go @@ -16,7 +16,7 @@ var ( ) func Dial(src v2net.Address, dest v2net.Destination, options internet.DialerOptions) (internet.Connection, error) { - log.Info("Dailing TCP to ", dest) + log.Info("Internet|TCP: Dailing TCP to ", dest) if src == nil { src = v2net.AnyIP } @@ -68,7 +68,7 @@ func Dial(src v2net.Address, dest v2net.Destination, options internet.DialerOpti } func DialRaw(src v2net.Address, dest v2net.Destination, options internet.DialerOptions) (internet.Connection, error) { - log.Info("Dailing Raw TCP to ", dest) + log.Info("Internet|TCP: Dailing Raw TCP to ", dest) conn, err := internet.DialToDest(src, dest) if err != nil { return nil, err