diff mbox series

[OSSTEST,80/82] tsreadconfig: Change misleading "setting" message

Message ID 20201007180024.7932-81-iwj@xenproject.org (mailing list archive)
State New, archived
Headers show
Series Reuse test hosts | expand

Commit Message

Ian Jackson Oct. 7, 2020, 6 p.m. UTC
These are the *existing* runvars and it is confusing that we print
"setting" for them.

Signed-off-by: Ian Jackson <iwj@xenproject.org>
---
 Osstest/TestSupport.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/Osstest/TestSupport.pm b/Osstest/TestSupport.pm
index 163862f8..f2d8a0e1 100644
--- a/Osstest/TestSupport.pm
+++ b/Osstest/TestSupport.pm
@@ -210,7 +210,7 @@  END
         while ($row= $q->fetchrow_hashref()) {
             $r{ $row->{name} }= $row->{val};
 	    $r_notsynth{ $row->{name} }= !$row->{synth};
-            logm("setting $row->{name}=$row->{val}");
+            logm("runvar $row->{name}=$row->{val}");
         }
         $q->finish();
     });