Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id C8F46200BA4 for ; Sat, 1 Oct 2016 03:07:41 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id C7A3E160AE7; Sat, 1 Oct 2016 01:07:41 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 419C4160AD9 for ; Sat, 1 Oct 2016 03:07:41 +0200 (CEST) Received: (qmail 21012 invoked by uid 500); 1 Oct 2016 01:07:40 -0000 Mailing-List: contact commits-help@mesos.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@mesos.apache.org Delivered-To: mailing list commits@mesos.apache.org Received: (qmail 21003 invoked by uid 99); 1 Oct 2016 01:07:40 -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; Sat, 01 Oct 2016 01:07:40 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 549D5DFB81; Sat, 1 Oct 2016 01:07:40 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: josephwu@apache.org To: commits@mesos.apache.org Date: Sat, 01 Oct 2016 01:07:40 -0000 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: [1/2] mesos git commit: Reduced one log for QoS Corrections to VLOG(1). archived-at: Sat, 01 Oct 2016 01:07:42 -0000 Repository: mesos Updated Branches: refs/heads/master 79838a290 -> fc4c1104e Reduced one log for QoS Corrections to VLOG(1). This line generates a lot of unnecessary logging noise when a QoSController is loaded. It logs periodically, even if there are no corrections to perform. Review: https://reviews.apache.org/r/52438/ Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/00a506a4 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/00a506a4 Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/00a506a4 Branch: refs/heads/master Commit: 00a506a4d42efe1224e08d617ef6e816c234409a Parents: 79838a2 Author: Kunal Thakar Authored: Fri Sep 30 12:32:43 2016 -0700 Committer: Joseph Wu Committed: Fri Sep 30 18:06:29 2016 -0700 ---------------------------------------------------------------------- src/slave/slave.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/00a506a4/src/slave/slave.cpp ---------------------------------------------------------------------- diff --git a/src/slave/slave.cpp b/src/slave/slave.cpp index 958a33b..fba0895 100644 --- a/src/slave/slave.cpp +++ b/src/slave/slave.cpp @@ -5520,7 +5520,7 @@ void Slave::_qosCorrections(const Future>& future) const list& corrections = future.get(); - LOG(INFO) << "Received " << corrections.size() << " QoS corrections"; + VLOG(1) << "Received " << corrections.size() << " QoS corrections"; foreach (const QoSCorrection& correction, corrections) { // TODO(nnielsen): Print correction, once the operator overload