From 223ff7d561d63daf6d5672fecba25d3a14296127 Mon Sep 17 00:00:00 2001 From: Darien Raymond Date: Fri, 4 Dec 2015 14:30:41 +0000 Subject: [PATCH] add error message --- shell/point/inbound_detour.go | 1 + 1 file changed, 1 insertion(+) diff --git a/shell/point/inbound_detour.go b/shell/point/inbound_detour.go index 4d405728..887a1a2d 100644 --- a/shell/point/inbound_detour.go +++ b/shell/point/inbound_detour.go @@ -50,6 +50,7 @@ func (this *InboundDetourHandler) Start() error { return retry.Timed(100 /* times */, 100 /* ms */).On(func() error { err := ich.handler.Listen(ich.port) if err != nil { + log.Error("Failed to start inbound detour on port %d: %v", ich.port, err) return err } return nil