protected final void logError(String message, Throwable cause, Object... args) {
getLoggingHandler().logError(m_identifier, message, cause, args);
}
private void setAgentContext(AgentContext agentContext) {
AgentContext old;
do {
old = m_contextRef.get();
}
while (!m_contextRef.compareAndSet(old, agentContext));
}