aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorgan Richomme <morgan.richomme@orange.com>2021-03-08 08:11:25 +0000
committerGerrit Code Review <gerrit@onap.org>2021-03-08 08:11:25 +0000
commit117ff55c751a69f6e38c7a752c5ad23681b1cde6 (patch)
treec8fc8140c3bed98bf5ec69276368cb85fc290c4f
parent920aa926a2a78dc7f1ba63e648d124a405962017 (diff)
parent9b854cc5a5e788fca5edfd557f9a0f58cbf34862 (diff)
Merge "Add missing logger for Pnf Scenario"
-rw-r--r--src/onaptests/scenario/pnf_macro.py3
1 files changed, 3 insertions, 0 deletions
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: