{
if (log.isLoggable(Level.FINE)) log.fine("Publishing the message ...\nKEY:\n" + xmlKey + "\nCONTENT-LENGTH=" + content.length + "\nQOS:\n" + qos);
try {
MsgUnit msgUnit = new MsgUnit(glob, xmlKey, content, qos);
StopWatch stop = new StopWatch();
PublishReturnQos publish = senderConnection.publish(msgUnit);
log.info("Success: Publishing done: " + publish.toXml() + "\n" + stop.nice());
//log.info(ME, "Success: Publishing done, returned message oid=" + publish.getKeyOid() + stop.nice());
} catch(XmlBlasterException e) {
log.warning("XmlBlasterException: " + e.getMessage());
}
}