Remove print

This commit is contained in:
mhchia
2019-09-19 15:38:38 +08:00
parent a7bc9fc358
commit 7cf0495f37
3 changed files with 0 additions and 6 deletions

View File

@ -97,7 +97,6 @@ class Mplex(IMuxedConn):
stream = MplexStream(name, stream_id, self)
async with self.streams_lock:
self.streams[stream_id] = stream
print(f"!@# _initialize_stream: stream_id={stream_id}, name={name}")
return stream
async def open_stream(self) -> IMuxedStream: