Skip to content

Commit 547bf6e

Browse files
authored
Merge branch 'staging' into feat/roman/remove-logs
2 parents f084c95 + 586d122 commit 547bf6e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bittensor/core/synapse.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,8 @@ def parse_headers_to_inputs(cls, headers: dict) -> dict:
808808
logging.error(f"Error while parsing 'input_obj' header {key}: {e}")
809809
continue
810810
else:
811-
logging.warning(f"Unexpected header key encountered: {key}")
811+
# setting this to warning fills up logs unnecessarily
812+
logging.trace(f"Unexpected header key encountered: {key}")
812813

813814
# Assign the remaining known headers directly
814815
inputs_dict["timeout"] = headers.get("timeout", None)

0 commit comments

Comments
 (0)