From c3315f9c996ac7ffb56c3742ca97fe17d7be9878 Mon Sep 17 00:00:00 2001 From: Matthias Radestock Date: Fri, 5 Aug 2016 23:47:35 +0100 Subject: [PATCH] reduce log level for absent pipe since we can get this when a pipe has been closed normally --- app/pipes.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/pipes.go b/app/pipes.go index 92e3f09aa..791a2bb9a 100644 --- a/app/pipes.go +++ b/app/pipes.go @@ -52,7 +52,8 @@ func handlePipeWs(pr PipeRouter, end End) CtxHandlerFunc { id := mux.Vars(r)["pipeID"] pipe, endIO, err := pr.Get(ctx, id, end) if err != nil { - log.Errorf("Error getting pipe %s: %v", id, err) + // this usually means the pipe has been closed + log.Debugf("Error getting pipe %s: %v", id, err) http.NotFound(w, r) return }