if (node.hasHadoopInfo())
{
return createHadoopLog(messageType, time, tree, node);
}
HadoopCallTreeNode parent = node.getParent();
JavelinConfig config = new JavelinConfig();
boolean isReturnDetail = config.isReturnDetail();
StringBuffer jvnBuffer = new StringBuffer();
Invocation callee = node.getInvocation();
Invocation caller;
if (parent == null)
{
String processName = VMStatusHelper.getProcessName();
caller =
new Invocation(processName, tree.getRootCallerName(),
JavelinLogConstants.DEFAULT_LOGMETHOD, 0);
}
else
{
caller = parent.getInvocation();
}
if (callee == null)
{
return "";