We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6321d9a + 43ef72d commit add45d2Copy full SHA for add45d2
1 file changed
python-lib/rest_api_recipe_session.py
@@ -46,7 +46,8 @@ def process_dataframe(self, input_parameters_dataframe, is_raw_output):
46
self.initial_parameter_columns.update({parameter_name: input_parameters_row.get(column_name)})
47
updated_endpoint_parameters = copy.deepcopy(self.endpoint_parameters)
48
updated_endpoint_parameters.update(self.initial_parameter_columns)
49
- logger.info("Creating client with credential={}, updated_endpoint={}, custom_key_values={}".format(
+ logger.info("Processing row #{}, creating client with credential={}, updated_endpoint={}, custom_key_values={}".format(
50
+ index + 1,
51
logger.filter_secrets(self.credential_parameters),
52
updated_endpoint_parameters,
53
self.custom_key_values
0 commit comments