Commit 320d0609 authored by Brian Tiger Chow's avatar Brian Tiger Chow
Browse files

log(secio) rm handshake console log (still has event log)

parent 3d43649d
...@@ -80,7 +80,6 @@ func (s *secureSession) handshake(ctx context.Context, insecure io.ReadWriter) e ...@@ -80,7 +80,6 @@ func (s *secureSession) handshake(ctx context.Context, insecure io.ReadWriter) e
return err return err
} }
log.Debugf("handshake: %s <--start--> %s", s.localPeer, s.remotePeer)
defer log.EventBegin(ctx, "secureHandshake", s.localPeer).Done() defer log.EventBegin(ctx, "secureHandshake", s.localPeer).Done()
s.local.permanentPubKey = s.localKey.GetPublic() s.local.permanentPubKey = s.localKey.GetPublic()
...@@ -293,7 +292,6 @@ func (s *secureSession) handshake(ctx context.Context, insecure io.ReadWriter) e ...@@ -293,7 +292,6 @@ func (s *secureSession) handshake(ctx context.Context, insecure io.ReadWriter) e
} }
// Whew! ok, that's all folks. // Whew! ok, that's all folks.
log.Debugf("handshake: %s <--finish--> %s", s.localPeer, s.remotePeer)
log.Event(ctx, "secureHandshakeFinish", s.localPeer, s.remotePeer) log.Event(ctx, "secureHandshakeFinish", s.localPeer, s.remotePeer)
return nil return nil
} }
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