[windup-dev] LogOperation?
Lincoln Baxter, III
lincoln at redhat.com
Thu Dec 11 10:19:00 EST 2014
org.jboss.windup.config.operation.Log
It just needs to be extended to take a java.util.logging.Logger as an argument as an alternative to using its own.
E.g. we currently have:
public static Log message(Level level, String message)
{
return new Log(level, message);
}
We need:
public static Log message(Logger log, Level level, String message)
{
return new Log(log, level, message);
}
~Lincoln
----- Original Message -----
From: "Ondrej Zizka" <ozizka at redhat.com>
To: "Lincoln Baxter" <lbaxter at redhat.com>
Sent: Tuesday, December 9, 2014 7:59:34 PM
Subject: LogOperation?
Hi Lincoln,
IIUC, you said we have some LogOperation, right?
I can't find it.
Normal logging can only be included in the operation itself, which is
not always desirable, hence the need for LogOperation. Or not?
Thanks,
Ondra
More information about the windup-dev
mailing list