Remove the log.error in VMTransport.asyncOneWay
-----------------------------------------------
Key: AMQ-1328
URL: https://issues.apache.org/activemq/browse/AMQ-1328
Project: ActiveMQ
Issue Type: Improvement
Components: Broker
Affects Versions: 4.1.1
Reporter: Jim Alateras
Priority: Minor
Remove the log.error statement in the VMTransport.asyncOneWay method
protected void asyncOneWay(Object command) throws IOException{
try{
synchronized(mutex){
if(messageQueue==null){
messageQueue=new LinkedBlockingQueue(this.asyncQueueDepth);
}
}
messageQueue.put(command);
wakeup();
}catch(final InterruptedException e){
log.error("messageQueue interupted",e);
throw new IOException(e.getMessage());
}
}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.