Ray Milkey
Committed by Gerrit Code Review

Prevent wipeout command from failing STC runs

Change-Id: I07ec96d408732fbd9e9e47ffcdc22b7bf850227e
...@@ -114,7 +114,7 @@ public class WipeOutCommand extends ClustersListCommand { ...@@ -114,7 +114,7 @@ public class WipeOutCommand extends ClustersListCommand {
114 hostAdminService.removeHost(host.id()); 114 hostAdminService.removeHost(host.id());
115 } 115 }
116 } catch (Exception e) { 116 } catch (Exception e) {
117 - log.warn("Unable to wipe-out hosts", e); 117 + log.info("Unable to wipe-out hosts", e);
118 } 118 }
119 } 119 }
120 } 120 }
...@@ -128,7 +128,7 @@ public class WipeOutCommand extends ClustersListCommand { ...@@ -128,7 +128,7 @@ public class WipeOutCommand extends ClustersListCommand {
128 deviceAdminService.removeDevice(device.id()); 128 deviceAdminService.removeDevice(device.id());
129 } 129 }
130 } catch (Exception e) { 130 } catch (Exception e) {
131 - log.warn("Unable to wipe-out devices", e); 131 + log.info("Unable to wipe-out devices", e);
132 } 132 }
133 } 133 }
134 } 134 }
...@@ -143,7 +143,7 @@ public class WipeOutCommand extends ClustersListCommand { ...@@ -143,7 +143,7 @@ public class WipeOutCommand extends ClustersListCommand {
143 linkAdminService.removeLinks(link.dst()); 143 linkAdminService.removeLinks(link.dst());
144 } 144 }
145 } catch (Exception e) { 145 } catch (Exception e) {
146 - log.warn("Unable to wipe-out links", e); 146 + log.info("Unable to wipe-out links", e);
147 } 147 }
148 } 148 }
149 } 149 }
......