Skip to content

Commit 9cd492e

Browse files
committed
remove some unneccary debug logic
1 parent 57b0129 commit 9cd492e

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/dubbo/codec/dubbo_codec.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,6 @@ def create_encoder_decoder_pair(transport_type: str, parameter_types: List[Type]
8282
return_type=return_type,
8383
**codec_options
8484
)
85-
print("codec_instance", codec_instance.get_encoder(), codec_instance.get_decoder())
86-
8785
return codec_instance.get_encoder(), codec_instance.get_decoder()
8886

8987
@staticmethod
@@ -104,7 +102,6 @@ def serialize_method_parameters(*args) -> bytes:
104102
def deserialize_method_return(data: bytes):
105103
return return_decoder.decode(data)
106104

107-
print(type(serialize_method_parameters),type(deserialize_method_return))
108105
return serialize_method_parameters, deserialize_method_return
109106

110107
@staticmethod

0 commit comments

Comments
 (0)