}
public void wrapperThreadDump()
{
Message m = new Message(Constants.WRAPPER_MSG_THREAD_DUMP, null);
Action a = ActionFactory.getAction(m);
try
{
ByteArrayOutputStream str = new ByteArrayOutputStream();
PrintStream pr = new PrintStream(str);
a.execute(m, null, pr, null);
pr.flush();
getWrapperLogger().info(str.toString());
}
catch (IOException e)
{