thanks Dominique. I think I have to go your suggested route instead.
The previous suggestion by Jan was really good, but turned out I would
have to worry too much about cloning the project properties and alot of
other stuff. I did especially like the debug you added too fits in
right wi
thanks, sounds like a good idea. I think that will work.
dean
> No idea, but a few thoughts:
> - don´t call perform(); instead call execute()
> - create a new Project instance with no loggers and call
> move.setProject(noLoggerProject)
> - maybe you can do something with the Redirector class
>
>
A little hackish, but this works...
Redirects the INFO output to VERBOSE. --DD
/** Silent version of . */
private static class SilentExpand extends Expand {
public void log(String msg) {
super.log(msg, Project.MSG_VERBOSE);
}
public void log(String msg, int leve
No idea, but a few thoughts:
- don´t call perform(); instead call execute()
- create a new Project instance with no loggers and call
move.setProject(noLoggerProject)
- maybe you can do something with the Redirector class
Jan
> -Original Message-
> From: Dean Hiller [mailto:[EMAIL PROT