Skip to content

Commit cf66e89

Browse files
committed
removes print debugging
1 parent 02c8d1e commit cf66e89

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

lldb/examples/synthetic/libcxx.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -816,24 +816,23 @@ def update(self):
816816
)
817817

818818
# check consistency
819-
print("aaaaaaaaaaaaaaaaaah")
820819
if not map_first <= map_begin <= map_end <= map_endcap:
821-
print("map pointers are not monotonic")
820+
logger.write("map pointers are not monotonic")
822821
return
823822
total_rows, junk = divmod(map_endcap - map_first, self.pointer_size)
824823
if junk:
825-
print("endcap-first doesnt align correctly")
824+
logger.write("endcap-first doesnt align correctly")
826825
return
827826
active_rows, junk = divmod(map_end - map_begin, self.pointer_size)
828827
if junk:
829-
print("end-begin doesnt align correctly")
828+
logger.write("end-begin doesnt align correctly")
830829
return
831830
start_row, junk = divmod(map_begin - map_first, self.pointer_size)
832831
if junk:
833-
print("begin-first doesnt align correctly")
832+
logger.write("begin-first doesnt align correctly")
834833
return
835834

836-
print(
835+
logger.write(
837836
"update success: count=%r, start=%r, first=%r" % (count, start, first)
838837
)
839838
# if consistent, save all we really need:

0 commit comments

Comments
 (0)