1
0
Fork 0

tuned: fixed logging related to assignment modifiers

Signed-off-by: Jaroslav Škarvada <jskarvad@redhat.com>
This commit is contained in:
Jaroslav Škarvada 2014-05-07 17:56:01 +02:00
parent 1d1c3a389c
commit c39fe688f7

View file

@ -340,7 +340,7 @@ class Plugin(object):
current_value = None
new_value = None
except ValueError:
log.warn("cannot compare new value '%s' with current value '%s' by operator '%s', using '%s' directly as new value" % (val, current_value, new_value))
log.warn("cannot compare new value '%s' with current value '%s' by operator '%s', using '%s' directly as new value" % (val, current_value, op, new_value))
if current_value is not None:
self._storage_set(instance, command, current_value, device)