sure - raise an issue in jira: https://issues.apache.org/activemq/ secure/CreateIssue!default.jspa

On Jul 17, 2007, at 2:32 PM, Jim Alateras wrote:

Is it possible to remove the log.error statement in the VMTransport.asyncOneWay method or degrade it to info

    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());
        }
    }

Reply via email to