Jon Hall
Committed by Gerrit Code Review

Print exception to log instead of stderr

Change-Id: Ib4ecad88ba81ba3ba14d1fbcc1581ef4c16a3abb
......@@ -92,7 +92,8 @@ public class CounterTestIncrementCommand extends AbstractShellCommand {
} catch (InterruptedException e) {
return;
} catch (ExecutionException | TimeoutException e) {
e.printStackTrace();
print("Error executing command");
log.error("Error executing command counter-test-increment", e);
}
}
}
......