Skip to content

Commit 776710c

Browse files
committed
hw-mgmt: thermal: Fix TC log level for "User config not defined" message
Fix TC log level for "User config not defined" message. This message is only informational, indicating a missing optional user configuration file. The log level of this message should be "info". Fix: Change message severity level from "warning" -> "info" Bug: 4583302 Signed-off-by: Oleksandr Shamray <[email protected]>
1 parent 000c888 commit 776710c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

usr/usr/bin/hw_management_thermal_control_2_5.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4018,7 +4018,7 @@ def load_configuration(self):
40184018
self.log.error("User config file {} load failed. Skip it".format(user_config_file_name), 1)
40194019
pass
40204020
if not user_config:
4021-
self.log.warn("User config not defined", 1)
4021+
self.log.info("User config not defined")
40224022
sys_config[CONST.SYS_CONF_USER_CONFIG_PARAM] = user_config
40234023
self.sys_config = sys_config
40244024

0 commit comments

Comments
 (0)