Commit 9307d8a8 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

packer/rpc: disable trace-level logs for now

parent 1234e61c
......@@ -287,7 +287,7 @@ func (m *MuxConn) loop() {
return
}
log.Printf("[TRACE] Stream %d received packet %d", id, packetType)
//log.Printf("[TRACE] Stream %d received packet %d", id, packetType)
switch packetType {
case muxPacketSyn:
stream.mu.Lock()
......@@ -452,7 +452,7 @@ func (s *Stream) closeWriter() {
}
func (s *Stream) setState(state streamState) {
log.Printf("[TRACE] Stream %d went to state %d", s.id, state)
//log.Printf("[TRACE] Stream %d went to state %d", s.id, state)
s.state = state
s.stateUpdated = time.Now().UTC()
for ch, _ := range s.stateChange {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment