From 69dc219ca3326ec6689a8c9a94a35d497fbda5d8 Mon Sep 17 00:00:00 2001 From: Eduardo Habkost Date: Fri, 2 Aug 2013 11:37:09 -0300 Subject: [PATCH] cpuid: convenience functions for logging Signed-off-by: Eduardo Habkost --- qemu/tests/cpuid.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/qemu/tests/cpuid.py b/qemu/tests/cpuid.py index ce869f3c..1f779991 100644 --- a/qemu/tests/cpuid.py +++ b/qemu/tests/cpuid.py @@ -1,11 +1,15 @@ """ Group of cpuid tests for X86 CPU """ -import logging, re, sys, traceback, os, string +import re, sys, traceback, os, string from autotest.client.shared import error, utils from autotest.client.shared import test as test_module from virttest import utils_misc, env_process +import logging +logger = logging.getLogger(__name__) +dbg = logger.debug +info = logger.info def run_cpuid(test, params, env): """ -- GitLab