We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d244791 commit af9b9e3Copy full SHA for af9b9e3
bittensor/core/synapse.py
@@ -808,7 +808,8 @@ def parse_headers_to_inputs(cls, headers: dict) -> dict:
808
logging.error(f"Error while parsing 'input_obj' header {key}: {e}")
809
continue
810
else:
811
- logging.warning(f"Unexpected header key encountered: {key}")
+ # setting this to warning fills up logs unnecessarily
812
+ logging.trace(f"Unexpected header key encountered: {key}")
813
814
# Assign the remaining known headers directly
815
inputs_dict["timeout"] = headers.get("timeout", None)
0 commit comments