Skip to content

Commit 21ff197

Browse files
committed
Clean debug logs
1 parent f2ed4a0 commit 21ff197

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

python-lib/rest_api_recipe_session.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,6 @@ def retrieve_next_page(self, is_raw_output):
106106
def format_page_rows(self, data_rows, is_raw_output, metadata=None):
107107
page_rows = []
108108
metadata = metadata or {}
109-
print("ALX:data_rows={}".format(data_rows))
110109
for data_row in data_rows:
111110
base_row = copy.deepcopy(self.initial_parameter_columns)
112111
base_row.update(metadata)
@@ -124,7 +123,6 @@ def format_page_rows(self, data_rows, is_raw_output, metadata=None):
124123

125124

126125
def is_error_message(jsons_response):
127-
print("ALX:is_error_message:jsons_response={}".format(jsons_response))
128126
if "error" in jsons_response and len(jsons_response) == 1:
129127
return True
130128
else:

0 commit comments

Comments
 (0)