Logging Trace
Overview
Creating Tracers
@AppHAPolicy(value = AepEngine.HAPolicy.StateReplication)
public class Application {
private static final Tracer tracer = Tracer.create("application", Level.INFO);
@EventHandler
final public void onMessage(Message message, Repository repository) {
if (tracer.debug) tracer.log("onMessage entered", Level.DEBUG);
}
}Trace Levels
Conditional Tracing
Logging Trace Messages
Configuring Trace Output
Quick Configuration Example
Related Topics
Next Steps
Last updated