Return-Path: X-Original-To: apmail-etch-commits-archive@www.apache.org Delivered-To: apmail-etch-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 E694810187 for ; Fri, 6 Dec 2013 14:48:33 +0000 (UTC) Received: (qmail 45024 invoked by uid 500); 6 Dec 2013 14:48:33 -0000 Delivered-To: apmail-etch-commits-archive@etch.apache.org Received: (qmail 44990 invoked by uid 500); 6 Dec 2013 14:48:30 -0000 Mailing-List: contact commits-help@etch.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@etch.apache.org Delivered-To: mailing list commits@etch.apache.org Received: (qmail 44982 invoked by uid 99); 6 Dec 2013 14:48:28 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 06 Dec 2013 14:48:28 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 06 Dec 2013 14:48:26 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 4C1D8238888F; Fri, 6 Dec 2013 14:48:05 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1548543 - /etch/trunk/binding-cpp/runtime/src/main/support/EtchRuntime.cpp Date: Fri, 06 Dec 2013 14:48:05 -0000 To: commits@etch.apache.org From: veithm@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20131206144805.4C1D8238888F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: veithm Date: Fri Dec 6 14:48:04 2013 New Revision: 1548543 URL: http://svn.apache.org/r1548543 Log: Fixing usage of enum in logging Change-Id: Ib5ecfbdfb0977ba1b59652606f647560139f95fd Modified: etch/trunk/binding-cpp/runtime/src/main/support/EtchRuntime.cpp Modified: etch/trunk/binding-cpp/runtime/src/main/support/EtchRuntime.cpp URL: http://svn.apache.org/viewvc/etch/trunk/binding-cpp/runtime/src/main/support/EtchRuntime.cpp?rev=1548543&r1=1548542&r2=1548543&view=diff ============================================================================== --- etch/trunk/binding-cpp/runtime/src/main/support/EtchRuntime.cpp (original) +++ etch/trunk/binding-cpp/runtime/src/main/support/EtchRuntime.cpp Fri Dec 6 14:48:04 2013 @@ -29,7 +29,7 @@ EtchRuntime::EtchRuntime() mId = getNextId(); mMutex.unlock(); - mLogger.setLogLevel(capu::ELogLevel::LL_ALL); + mLogger.setLogLevel(capu::LL_ALL); } EtchRuntime::~EtchRuntime() { @@ -101,4 +101,4 @@ capu::uint64_t EtchRuntime::getNextId() EtchLogger& EtchRuntime::getLogger() { return mLogger; -} \ No newline at end of file +}