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

Remove lane speed key construction failure log #549

Merged
Merged
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion sonic-xcvrd/xcvrd/xcvrd_utilities/media_settings_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def get_lane_speed_key(physical_port, port_speed, lane_count):
if host_electrical_interface_id:
lane_speed_key = LANE_SPEED_KEY_PREFIX + host_electrical_interface_id.split()[0]
if not lane_speed_key:
helper_logger.log_error("No host_electrical_interface_id found for CMIS module on physical port {}"
helper_logger.log_notice("No host_electrical_interface_id found for CMIS module on physical port {}"
", failed to construct lane_speed_key".format(physical_port))
else:
# Directly calculate lane speed and use it as key, this is especially useful for
Expand Down
Loading