Return-Path: Delivered-To: apmail-incubator-cxf-issues-archive@locus.apache.org Received: (qmail 84299 invoked from network); 12 Jun 2007 11:08:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 12 Jun 2007 11:08:49 -0000 Received: (qmail 56911 invoked by uid 500); 12 Jun 2007 11:08:51 -0000 Delivered-To: apmail-incubator-cxf-issues-archive@incubator.apache.org Received: (qmail 56812 invoked by uid 500); 12 Jun 2007 11:08:51 -0000 Mailing-List: contact cxf-issues-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: cxf-dev@incubator.apache.org Delivered-To: mailing list cxf-issues@incubator.apache.org Received: (qmail 56803 invoked by uid 99); 12 Jun 2007 11:08:51 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 12 Jun 2007 04:08:51 -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.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 12 Jun 2007 04:08:47 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 4B1B97141FF for ; Tue, 12 Jun 2007 04:08:26 -0700 (PDT) Message-ID: <8608378.1181646506305.JavaMail.jira@brutus> Date: Tue, 12 Jun 2007 04:08:26 -0700 (PDT) From: "Colm O hEigeartaigh (JIRA)" To: cxf-issues@incubator.apache.org Subject: [jira] Created: (CXF-723) The "time" logging in both the WSS4JInInterceptor and the WSS4JOutInterceptor contains incorrect or redundant information MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org The "time" logging in both the WSS4JInInterceptor and the WSS4JOutInterceptor contains incorrect or redundant information ------------------------------------------------------------------------------------------------------------------------- Key: CXF-723 URL: https://issues.apache.org/jira/browse/CXF-723 Project: CXF Issue Type: Bug Components: WS-* Components Reporter: Colm O hEigeartaigh Priority: Minor Both WSS4JInInterceptor and WSS4JOutInterceptor give the user the ability to see how much system time is spent in each phase of processing the message. However, there are some flaws with the way this is implemented: WSS4JOutInterceptor: 1) The "t3" variable is superfluous, as is the log message '"request to CXF= " + (t3 - t2)' (which will always be ~0). WSS4JInInterceptor: 1) The "t3" variable is defined as 0, which means that the log message '" request to CXF= " + (t3 - t2)' gives a (wildly) incorrect result, eg; FINE: Receive request: total= 47 request preparation= 0 request processing= 47 request to CXF= -1181643784031 header, cert verify, timestamp= 1181643784031 The same applies for the log message '" header, cert verify, timestamp= " + (t4 - t3)' Please see the attached patch for a fix for this. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.