From 9344b9e566b7d864a92b036f8a9f9ff78dc0637e Mon Sep 17 00:00:00 2001 From: bobbymcgonigle Date: Wed, 22 May 2024 16:17:14 -0700 Subject: [PATCH] forgotten %s --- orchagent/port/porthlpr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orchagent/port/porthlpr.cpp b/orchagent/port/porthlpr.cpp index 318a2a18b3..31698d6e72 100644 --- a/orchagent/port/porthlpr.cpp +++ b/orchagent/port/porthlpr.cpp @@ -764,7 +764,7 @@ bool PortHelper::parsePortSubport(PortConfig &port, const std::string &field, co port.subport.value = toUInt16(value); if (port.subport.value < 0) { - SWSS_LOG_ERROR("Failed to parse field(%s): negative number is prohibited", field.c_str(), value.c_str()); + SWSS_LOG_ERROR("Failed to parse field(%s): negative number(%s) is prohibited", field.c_str(), value.c_str()); return false; } port.subport.is_set = true;