diff options
author | fujinhua <fu.jinhua@zte.com.cn> | 2017-11-06 17:20:09 +0800 |
---|---|---|
committer | fujinhua <fu.jinhua@zte.com.cn> | 2017-11-06 17:20:09 +0800 |
commit | 85518e3d69a9d04549bea6d9c97630313850f5e2 (patch) | |
tree | ccd2c46cdb9b3482bcca61698028dcc4142f9f65 | |
parent | b0d27ae27e3cbd210fd181cbefe1fb430a6a6d22 (diff) |
Change log from error to info when no sfc
Change-Id: Ia9dff69c40717cb75f40cda598a6faa694ff407f
Issue-Id: VFC-581
Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
-rw-r--r-- | lcm/ns/ns_terminate.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lcm/ns/ns_terminate.py b/lcm/ns/ns_terminate.py index 0e87e489..7f481639 100644 --- a/lcm/ns/ns_terminate.py +++ b/lcm/ns/ns_terminate.py @@ -104,7 +104,7 @@ class TerminateNsService(threading.Thread): def cancel_sfc_list(self): array_sfcinst = FPInstModel.objects.filter(nsinstid=self.ns_inst_id) if not array_sfcinst: - logger.error("[cancel_sfc_list] no sfcinst attatch to ns_inst_id:%s" % self.ns_inst_id) + logger.info("[cancel_sfc_list] no sfcinst attatch to ns_inst_id:%s" % self.ns_inst_id) return step_progress = 20 / len(array_sfcinst) cur_progress = 30 |