diff --git a/SystemServices/CHANGELOG.md b/SystemServices/CHANGELOG.md index 7139b6fa94..1cc8dc9225 100644 --- a/SystemServices/CHANGELOG.md +++ b/SystemServices/CHANGELOG.md @@ -16,6 +16,10 @@ All notable changes to this RDK Service will be documented in this file. * For more details, refer to [versioning](https://github.com/rdkcentral/rdkservices#versioning) section under Main README. +## [3.5.3] - 2025-10-16 +### Fixed +- Removed unncecsarry log that was giving a false positive in terms of an error marker in logs + ## [3.5.2] - 2025-10-16 ### Fixed - Added safetycheck around string manipulation while invoking getTerritory/setTerritory diff --git a/SystemServices/SystemServices.cpp b/SystemServices/SystemServices.cpp index eb22c22b7c..1685844c4e 100644 --- a/SystemServices/SystemServices.cpp +++ b/SystemServices/SystemServices.cpp @@ -67,7 +67,7 @@ using namespace std; #define API_VERSION_NUMBER_MAJOR 3 #define API_VERSION_NUMBER_MINOR 5 -#define API_VERSION_NUMBER_PATCH 1 +#define API_VERSION_NUMBER_PATCH 3 #define MAX_REBOOT_DELAY 86400 /* 24Hr = 86400 sec */ #define TR181_FW_DELAY_REBOOT "Device.DeviceInfo.X_RDKCENTRAL-COM_RFC.Feature.AutoReboot.fwDelayReboot" diff --git a/SystemServices/SystemServicesHelper.cpp b/SystemServices/SystemServicesHelper.cpp index 6100c11f8d..4e9e613d4e 100644 --- a/SystemServices/SystemServicesHelper.cpp +++ b/SystemServices/SystemServicesHelper.cpp @@ -172,8 +172,8 @@ namespace WPEFramework { { const char * pipeName = "PATH=${PATH}:/sbin:/usr/sbin /lib/rdk/getDeviceDetails.sh read"; FILE* pipe = popen(pipeName, "r"); - LOGWARN("%s: opened pipe for command '%s', with result %s : %s\n", - __FUNCTION__ , pipeName, pipe ? "sucess" : "failure", strerror(errno)); + LOGWARN("%s: opened pipe for command '%s', with result %s\n", + __FUNCTION__ , pipeName, pipe ? "success" : "failure"); if (!pipe) { LOGERR("%s: SERVICEMANAGER_FILE_ERROR: Can't open pipe for command '%s' for read mode: %s\n" , __FUNCTION__, pipeName, strerror(errno));