From 9b854cc5a5e788fca5edfd557f9a0f58cbf34862 Mon Sep 17 00:00:00 2001 From: Michal Jagiello Date: Fri, 5 Mar 2021 16:00:28 +0000 Subject: Add missing logger for Pnf Scenario Issue-ID: INT-1822 Signed-off-by: Michal Jagiello Change-Id: Ic247446b82e406ce0a8b4477f833bb9f12847836 --- src/onaptests/scenario/pnf_macro.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/onaptests/scenario/pnf_macro.py b/src/onaptests/scenario/pnf_macro.py index a045a37..fef8b83 100644 --- a/src/onaptests/scenario/pnf_macro.py +++ b/src/onaptests/scenario/pnf_macro.py @@ -1,4 +1,5 @@ """Instantiate service with PNF using SO macro flow.""" +import logging import time from yaml import load @@ -100,6 +101,8 @@ class PnfMacroScenarioStep(YamlTemplateBaseStep): class PnfMacro(testcase.TestCase): """Run PNF simulator and onboard then instantiate a service with PNF.""" + __logger = logging.getLogger(__name__) + def __init__(self, **kwargs): """Init Basic Network use case.""" if "case_name" not in kwargs: -- cgit 1.2.3-korg