Return-Path: Delivered-To: apmail-ode-commits-archive@www.apache.org Received: (qmail 53914 invoked from network); 1 Oct 2007 13:51:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 1 Oct 2007 13:51:25 -0000 Received: (qmail 72651 invoked by uid 500); 1 Oct 2007 13:51:15 -0000 Delivered-To: apmail-ode-commits-archive@ode.apache.org Received: (qmail 72637 invoked by uid 500); 1 Oct 2007 13:51:14 -0000 Mailing-List: contact commits-help@ode.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ode.apache.org Delivered-To: mailing list commits@ode.apache.org Received: (qmail 72628 invoked by uid 99); 1 Oct 2007 13:51:14 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Oct 2007 06:51:14 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Oct 2007 13:51:24 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 0FD221A9832; Mon, 1 Oct 2007 06:51:03 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r580952 - /ode/branches/APACHE_ODE_1.1/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/BpelEngineImpl.java Date: Mon, 01 Oct 2007 13:51:02 -0000 To: commits@ode.apache.org From: mszefler@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071001135104.0FD221A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: mszefler Date: Mon Oct 1 06:50:58 2007 New Revision: 580952 URL: http://svn.apache.org/viewvc?rev=580952&view=rev Log: Changed no instance for schedule job error to be a debug message. Modified: ode/branches/APACHE_ODE_1.1/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/BpelEngineImpl.java Modified: ode/branches/APACHE_ODE_1.1/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/BpelEngineImpl.java URL: http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.1/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/BpelEngineImpl.java?rev=580952&r1=580951&r2=580952&view=diff ============================================================================== --- ode/branches/APACHE_ODE_1.1/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/BpelEngineImpl.java (original) +++ ode/branches/APACHE_ODE_1.1/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/BpelEngineImpl.java Mon Oct 1 06:50:58 2007 @@ -306,10 +306,9 @@ else instance = _contexts.dao.getConnection().getInstance(we.getIID()); if (instance == null) { - __log.error(__msgs.msgScheduledJobReferencesUnknownInstance(we.getIID())); - // nothing we can do, this instance is not in the database, it will - // always - // fail. + __log.debug(__msgs.msgScheduledJobReferencesUnknownInstance(we.getIID())); + // nothing we can do, this instance is not in the database, it will always fail, not + // exactly an error since can occur in normal course of events. return; } ProcessDAO processDao = instance.getProcess();