Example usage for org.aspectj.bridge IMessageHandler dontIgnore

List of usage examples for org.aspectj.bridge IMessageHandler dontIgnore

Introduction

In this page you can find the example usage for org.aspectj.bridge IMessageHandler dontIgnore.

Prototype

void dontIgnore(IMessage.Kind kind);

Source Link

Document

Allow fine grained configuration after initialization.

Usage

From source file:info.rubico.mock4aj.weavers.aspectj.DynamicRuntimeWeavingAdaptor.java

License:Open Source License

protected void initMessageHandler() {
    super.createMessageHandler();

    IMessageHandler messageHandler = getMessageHandler();
    // TODO Configure verbosity
    messageHandler.dontIgnore(IMessage.INFO); // VERBOSE
    messageHandler.dontIgnore(IMessage.DEBUG);
    messageHandler.dontIgnore(IMessage.WEAVEINFO);
}