client = bootstrap.getKnownAgentClient(agent);
if (client != null) {
// We assume the caller is asking for a client so it can send the agent messages,
// so let's start the sender automatically for the caller so it doesn't need to remember to do it
client.startSending();
} else {
if (LOG.isDebugEnabled()) {
LOG.debug("There is no agent client for agent: " + agent);
}
}