From commits-return-45562-apmail-cxf-commits-archive=cxf.apache.org@cxf.apache.org Wed Mar 22 20:13:27 2017 Return-Path: X-Original-To: apmail-cxf-commits-archive@www.apache.org Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7C0B919857 for ; Wed, 22 Mar 2017 20:13:27 +0000 (UTC) Received: (qmail 39139 invoked by uid 500); 22 Mar 2017 20:13:27 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 39035 invoked by uid 500); 22 Mar 2017 20:13:26 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 39019 invoked by uid 99); 22 Mar 2017 20:13:26 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Mar 2017 20:13:26 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id BE4C8DFE7B; Wed, 22 Mar 2017 20:13:26 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: dkulp@apache.org To: commits@cxf.apache.org Date: Wed, 22 Mar 2017 20:13:27 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [2/2] cxf git commit: [CXF-5782] Move logged class names to FINE [CXF-5782] Move logged class names to FINE Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/16228235 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/16228235 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/16228235 Branch: refs/heads/master Commit: 1622823593e1a9a836e0e354ad37ea1cc56c3fb8 Parents: f186ffe Author: Daniel Kulp Authored: Wed Mar 22 15:39:28 2017 -0400 Committer: Daniel Kulp Committed: Wed Mar 22 15:39:28 2017 -0400 ---------------------------------------------------------------------- core/src/main/java/org/apache/cxf/common/jaxb/JAXBUtils.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/16228235/core/src/main/java/org/apache/cxf/common/jaxb/JAXBUtils.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/cxf/common/jaxb/JAXBUtils.java b/core/src/main/java/org/apache/cxf/common/jaxb/JAXBUtils.java index 8527851..24d749a 100644 --- a/core/src/main/java/org/apache/cxf/common/jaxb/JAXBUtils.java +++ b/core/src/main/java/org/apache/cxf/common/jaxb/JAXBUtils.java @@ -739,7 +739,7 @@ public final class JAXBUtils { } public static void logGeneratedClassNames(Logger logger, JCodeModel codeModel) { - if (!logger.isLoggable(Level.INFO)) { + if (!logger.isLoggable(Level.FINE)) { return; } @@ -758,7 +758,7 @@ public final class JAXBUtils { } } - logger.log(Level.INFO, "Created classes: " + sb.toString()); + logger.log(Level.FINE, "Created classes: " + sb.toString()); } public static List getGeneratedClassNames(JCodeModel codeModel) {