service.createTag(generateTagName(), TESTSITE_NAME);
}
stopWatch.stop();
final long withLogs = stopWatch.getLastTaskTimeMillis();
logger.info(stopWatch.prettyPrint());
if (withLogs > withoutLogs) {
assertThat("Logs has more than 5% impact on peformance",
((Math.abs(withLogs - withoutLogs) / (float)withoutLogs) * 100), (Matcher<Object>) lessThan((float)5));
}