From 89fb65a6f0f1b6981c26c9b9d05a02332f6ec6d7 Mon Sep 17 00:00:00 2001 From: "tim@chromium.org" Date: Mon, 18 Oct 2010 21:53:00 +0000 Subject: ** Think this may have caused TabSwitchingTest to fail, as it is parsing log files. ** Revert 62959 - Convert LOG(INFO) to VLOG(1) - base/. Also removes an "else" after "return" and aligns "<<" per style guide. BUG=none TEST=none Review URL: http://codereview.chromium.org/3845002 TBR=pkasting@chromium.org Review URL: http://codereview.chromium.org/3850006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62981 0039d316-1c4b-4281-b951-d872f2087c98 --- base/debug_util_unittest.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'base/debug_util_unittest.cc') diff --git a/base/debug_util_unittest.cc b/base/debug_util_unittest.cc index 8d0deab..c3c9cdf 100644 --- a/base/debug_util_unittest.cc +++ b/base/debug_util_unittest.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -97,7 +97,7 @@ TEST(StackTrace, DebugOutputToStream) { StackTrace trace; std::ostringstream os; trace.OutputToStream(&os); - VLOG(1) << os.str(); + LOG(INFO) << os.str(); } // The test is used for manual testing, e.g., to see the raw output. -- cgit v1.1