From 472919790fbd14a5eddb07bfc366d9a37fb207c1 Mon Sep 17 00:00:00 2001 From: Dipti Dhond Date: Tue, 14 Jul 2020 17:13:17 -0700 Subject: [PATCH] print statement moved --- py-json/LANforge/LFUtils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/py-json/LANforge/LFUtils.py b/py-json/LANforge/LFUtils.py index ebc21281..f6d57a31 100644 --- a/py-json/LANforge/LFUtils.py +++ b/py-json/LANforge/LFUtils.py @@ -159,7 +159,7 @@ def portDownRequest(resource_id, port_name, debug_on=False): :param port_name: :return: """ - print("portDownRequest") + data = { "shelf": 1, "resource": resource_id, @@ -169,6 +169,7 @@ def portDownRequest(resource_id, port_name, debug_on=False): "report_timer": REPORT_TIMER_MS_FAST, } if (debug_on): + print("Port down request") debug_printer.pprint(data) return data