From patchwork Tue Feb 7 23:23:11 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Larson X-Patchwork-Id: 6700 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 13D4523E01 for ; Tue, 7 Feb 2012 23:23:14 +0000 (UTC) Received: from mail-gy0-f180.google.com (mail-gy0-f180.google.com [209.85.160.180]) by fiordland.canonical.com (Postfix) with ESMTP id CF7F8A187A1 for ; Tue, 7 Feb 2012 23:23:13 +0000 (UTC) Received: by ghbz22 with SMTP id z22so4233881ghb.11 for ; Tue, 07 Feb 2012 15:23:13 -0800 (PST) Received: by 10.50.94.228 with SMTP id df4mr5330555igb.12.1328656992988; Tue, 07 Feb 2012 15:23:12 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.231.169.210 with SMTP id a18cs139163ibz; Tue, 7 Feb 2012 15:23:12 -0800 (PST) Received: by 10.180.82.227 with SMTP id l3mr35443385wiy.1.1328656991625; Tue, 07 Feb 2012 15:23:11 -0800 (PST) Received: from indium.canonical.com (indium.canonical.com. [91.189.90.7]) by mx.google.com with ESMTPS id ft1si17345576wib.41.2012.02.07.15.23.11 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 07 Feb 2012 15:23:11 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.7 as permitted sender) client-ip=91.189.90.7; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.7 as permitted sender) smtp.mail=bounces@canonical.com Received: from ackee.canonical.com ([91.189.89.26]) by indium.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1RuuNT-0003JJ-4G for ; Tue, 07 Feb 2012 23:23:11 +0000 Received: from ackee.canonical.com (localhost [127.0.0.1]) by ackee.canonical.com (Postfix) with ESMTP id 0D71AE0801 for ; Tue, 7 Feb 2012 23:23:11 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: lava-test X-Launchpad-Branch: ~linaro-validation/lava-test/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 118 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-validation/lava-test/trunk] Rev 118: change logging level default so that it is not so spammy Message-Id: <20120207232311.29506.29982.launchpad@ackee.canonical.com> Date: Tue, 07 Feb 2012 23:23:11 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="14747"; Instance="launchpad-lazr.conf" X-Launchpad-Hash: d451b1f45f365015391a93ec1a292f708e0ac4d4 Merge authors: Le Chi Thu le.chi.thu@linaro.org Related merge proposals: https://code.launchpad.net/~le-chi-thu/lava-test/set-logging-level/+merge/91936 proposed by: Le Chi Thu (le-chi-thu) review: Approve - Zygmunt Krynicki (zkrynicki) review: Approve - Paul Larson (pwlars) ------------------------------------------------------------ revno: 118 [merge] committer: Paul Larson branch nick: lava-test timestamp: Tue 2012-02-07 15:21:37 -0800 message: change logging level default so that it is not so spammy modified: lava_test/main.py --- lp:lava-test https://code.launchpad.net/~linaro-validation/lava-test/trunk You are subscribed to branch lp:lava-test. To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-test/trunk/+edit-subscription === modified file 'lava_test/main.py' --- lava_test/main.py 2012-01-17 12:42:46 +0000 +++ lava_test/main.py 2012-02-07 22:26:47 +0000 @@ -44,7 +44,7 @@ FORMAT = '%(asctime)s %(levelname)s: %(message)s' DATEFMT= '%Y-%m-%d %I:%M:%S %p' logging.basicConfig(format=FORMAT,datefmt=DATEFMT) - logging.root.setLevel(logging.DEBUG) + logging.root.setLevel(logging.ERROR) run_with_dispatcher_class(LAVATestDispatcher)