Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes the logging level for unexpected header keys to trace #2666

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion bittensor/core/synapse.py
Original file line number Diff line number Diff line change
Expand Up @@ -808,7 +808,8 @@ def parse_headers_to_inputs(cls, headers: dict) -> dict:
logging.error(f"Error while parsing 'input_obj' header {key}: {e}")
continue
else:
logging.warning(f"Unexpected header key encountered: {key}")
# setting this to warning fills up logs unnecessarily
logging.trace(f"Unexpected header key encountered: {key}")
roman-opentensor marked this conversation as resolved.
Show resolved Hide resolved

# Assign the remaining known headers directly
inputs_dict["timeout"] = headers.get("timeout", None)
Expand Down
Loading