Skip to content
Snippets Groups Projects
Commit abf5b2f5 authored by spmohanty's avatar spmohanty
Browse files

add a identifying marker to parsers warnings

parent c5ec7c3f
No related branches found
No related tags found
No related merge requests found
......@@ -88,7 +88,7 @@ class ShoppingBenchTaskParsers:
return int(response[0])
except Exception as e:
logger.warning(
f"Error parsing multichoice response: {e}. Responding with default : {default_response}"
f"SHOPBENCH_PARSER_WARNING::: Error parsing multichoice response: {e}. Responding with default : {default_response}"
)
return default_response
......@@ -177,7 +177,7 @@ class ShoppingBenchTaskParsers:
return retrieved_items
except Exception as e:
logger.warning(
f"Error parsing retrieval response: {e}. Responding with default : {default_response}"
f"SHOPBENCH_PARSER_WARNING::: Error parsing retrieval response: {e}. Responding with default : {default_response}"
)
return default_response
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment