From 30f1233f7408d2843621ae9f67a6cfd37a06f002 Mon Sep 17 00:00:00 2001 From: Zack Scholl Date: Thu, 9 May 2019 23:02:35 -0600 Subject: [PATCH] fix tests --- src/croc/croc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/croc/croc.go b/src/croc/croc.go index 14275d136..242094cf4 100644 --- a/src/croc/croc.go +++ b/src/croc/croc.go @@ -291,7 +291,7 @@ func (c *Client) Send(options TransferOptions) (err error) { } go func() { - log.Debug("establishing connection to %s", c.Options.RelayAddress) + log.Debugf("establishing connection to %s", c.Options.RelayAddress) var banner string conn, banner, ipaddr, err := tcp.ConnectToTCPServer(c.Options.RelayAddress, c.Options.SharedSecret) log.Debugf("banner: %s", banner)