ReportModule. When using a predefined
ExecutionLogger, replace it with the corresponding ReportModule.
If the old version was
@Rule public ContiPerfRule = new ContiPerfRule(new ConsoleExecutionLogger());
the new version would be
@Rule public ContiPerfRule = new ContiPerfRule(new ConsoleReportModule());
Custom ExecutionLogger implementations still can be used by
wrapping them with a LoggerModuleAdapter. If the old
version was
@Rule public ContiPerfRule = new ContiPerfRule(new MyCustomLogger());
the new version would be
@Rule public ContiPerfRule = new ContiPerfRule(new LoggerModuleAdapter(new MyCustomLogger()));
@Deprecated public interface ExecutionLogger
| Modifier and Type | Method and Description |
|---|---|
void |
logInvocation(String id,
int latency,
long startTime)
Deprecated.
|
void |
logSummary(String id,
long elapsedTime,
long invocationCount,
long startTime)
Deprecated.
|
Copyright © 2019. All rights reserved.