We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 814a068 commit 269a43cCopy full SHA for 269a43c
javaobj.py
@@ -988,10 +988,16 @@ def _convert_char_to_type(self, type_char):
988
raise RuntimeError("Typecode {0} ({1}) isn't supported."
989
.format(type_char, typecode))
990
991
- def _add_reference(self, obj):
+ def _add_reference(self, obj, ident=0):
992
"""
993
Adds a read reference to the marshaler storage
994
+
995
+ :param obj: Reference to add
996
+ :param ident: Log indentation level
997
998
+ log_debug("## New reference handle 0x{0:X}"
999
+ .format(len(self.references) + self.BASE_REFERENCE_IDX),
1000
+ ident)
1001
self.references.append(obj)
1002
1003
def _oops_dump_state(self, ignore_remaining_data=False):
0 commit comments