From c39fe688f71ed2b93052bb07d5f95f1ef5da5781 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Wed, 7 May 2014 17:56:01 +0200 Subject: [PATCH] tuned: fixed logging related to assignment modifiers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jaroslav Škarvada --- tuned/plugins/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tuned/plugins/base.py b/tuned/plugins/base.py index f0faf38..af93c3a 100644 --- a/tuned/plugins/base.py +++ b/tuned/plugins/base.py @@ -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)