From 3a1908bbb36f978dcbff7bce4030b52a88f4d16d Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 1 Jan 2014 21:34:11 -0800 Subject: [PATCH] packer/rpc: make things loud --- packer/rpc/muxconn.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packer/rpc/muxconn.go b/packer/rpc/muxconn.go index 2031ec5cb..d03c68c6b 100644 --- a/packer/rpc/muxconn.go +++ b/packer/rpc/muxconn.go @@ -100,7 +100,7 @@ func (m *MuxConn) Close() error { // Accept accepts a multiplexed connection with the given ID. This // will block until a request is made to connect. func (m *MuxConn) Accept(id uint32) (io.ReadWriteCloser, error) { - //log.Printf("[TRACE] %p: Accept on stream ID: %d", m, id) + log.Printf("[TRACE] %p: Accept on stream ID: %d", m, id) // Get the stream. It is okay if it is already in the list of streams // because we may have prematurely received a syn for it. @@ -322,7 +322,7 @@ func (m *MuxConn) loop() { continue } - //log.Printf("[TRACE] %p: Stream %d (%s) received packet %d", m, id, from, packetType) + log.Printf("[TRACE] %p: Stream %d (%s) received packet %d", m, id, from, packetType) switch packetType { case muxPacketSyn: // If the stream is nil, this is the only case where we'll @@ -546,7 +546,7 @@ func (s *Stream) closeWriter() { } func (s *Stream) setState(state streamState) { - //log.Printf("[TRACE] %p: Stream %d (%s) went to state %d", s.mux, s.id, s.from, state) + log.Printf("[TRACE] %p: Stream %d (%s) went to state %d", s.mux, s.id, s.from, state) s.state = state s.stateUpdated = time.Now().UTC() for ch, _ := range s.stateChange {