From ab87ac444f90a6d992a0376e668750f68d3e65ec Mon Sep 17 00:00:00 2001 From: Ray Milkey Date: Fri, 26 Aug 2016 13:13:19 -0700 Subject: [PATCH] Prevent wipeout command from failing STC runs Change-Id: I07ec96d408732fbd9e9e47ffcdc22b7bf850227e --- .../main/java/org/onosproject/cli/net/WipeOutCommand.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cli/src/main/java/org/onosproject/cli/net/WipeOutCommand.java b/cli/src/main/java/org/onosproject/cli/net/WipeOutCommand.java index 0e28795408..550710eeaa 100644 --- a/cli/src/main/java/org/onosproject/cli/net/WipeOutCommand.java +++ b/cli/src/main/java/org/onosproject/cli/net/WipeOutCommand.java @@ -114,7 +114,7 @@ public class WipeOutCommand extends ClustersListCommand { hostAdminService.removeHost(host.id()); } } catch (Exception e) { - log.warn("Unable to wipe-out hosts", e); + log.info("Unable to wipe-out hosts", e); } } } @@ -128,7 +128,7 @@ public class WipeOutCommand extends ClustersListCommand { deviceAdminService.removeDevice(device.id()); } } catch (Exception e) { - log.warn("Unable to wipe-out devices", e); + log.info("Unable to wipe-out devices", e); } } } @@ -143,7 +143,7 @@ public class WipeOutCommand extends ClustersListCommand { linkAdminService.removeLinks(link.dst()); } } catch (Exception e) { - log.warn("Unable to wipe-out links", e); + log.info("Unable to wipe-out links", e); } } }