summaryrefslogtreecommitdiff
path: root/ironic/conductor
diff options
context:
space:
mode:
authorDmitry Tantsur <dtantsur@protonmail.com>2021-10-06 10:46:48 +0200
committerDmitry Tantsur <dtantsur@protonmail.com>2021-10-06 10:53:41 +0200
commitdec673784b8a006635f8d5617aa751a00792b52a (patch)
treed2c64cde75e9dfb71f6b5fb13c86358c72f22f79 /ironic/conductor
parentefe5a2cf54ac269f9cd90f02088e5485e90630ff (diff)
downloadironic-dec673784b8a006635f8d5617aa751a00792b52a.tar.gz
Demote three warning messages
These 3 messages do not convey a lot of useful information to the operators and definitely do not represent a potential issue that warrants a warning. Change-Id: I77f5802125f79c945eb05a278f7ce53696df830a
Diffstat (limited to 'ironic/conductor')
-rw-r--r--ironic/conductor/utils.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ironic/conductor/utils.py b/ironic/conductor/utils.py
index 59b60a5da..2a1e19f48 100644
--- a/ironic/conductor/utils.py
+++ b/ironic/conductor/utils.py
@@ -238,9 +238,9 @@ def _can_skip_state_change(task, new_state):
notify_utils.emit_power_set_notification(
task, fields.NotificationLevel.INFO,
fields.NotificationStatus.END, new_state)
- LOG.warning("Not going to change node %(node)s power state because "
- "current state = requested state = '%(state)s'.",
- {'node': node.uuid, 'state': curr_state})
+ LOG.debug("Not going to change node %(node)s power state because "
+ "current state = requested state = '%(state)s'.",
+ {'node': node.uuid, 'state': curr_state})
try:
curr_state = task.driver.power.get_power_state(task)