shillner/maven-cdi-plugin-utils

WELD Question

andye2004 opened this issue · 1 comments

Is there a way to silence the info logging?

I filed PR #29 to allow this. With that patch, it is as simple as

public final class MyMojo extends AbstractCDIMojo
{
    static
    {
        System.setProperty("org.slf4j.simpleLogger.log.org.jboss.weld", "warning");
    }

Let's see what @shillner thinks about it.