From 18cca2018b2159c6efdde226d1c2695aba4a62aa Mon Sep 17 00:00:00 2001 From: "pkasting@chromium.org" Date: Thu, 21 Oct 2010 20:40:58 +0000 Subject: Convert LOG(INFO) to VLOG(1) - courgette/. This eliminates the custom logging code as VLOG is per-module configurable. I did preserve the distinct log level numbers in the VLOG statements. BUG=none TEST=none Review URL: http://codereview.chromium.org/3904002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63407 0039d316-1c4b-4281-b951-d872f2087c98 --- courgette/encoded_program.cc | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'courgette/encoded_program.cc') diff --git a/courgette/encoded_program.cc b/courgette/encoded_program.cc index 56290c77..4c84e05 100644 --- a/courgette/encoded_program.cc +++ b/courgette/encoded_program.cc @@ -233,16 +233,16 @@ void EncodedProgram::AddMakeRelocs() { } void EncodedProgram::DebuggingSummary() { - LOG(INFO) << "EncodedProgram Summary"; - LOG(INFO) << " image base " << image_base_; - LOG(INFO) << " abs32 rvas " << abs32_rva_.size(); - LOG(INFO) << " rel32 rvas " << rel32_rva_.size(); - LOG(INFO) << " ops " << ops_.size(); - LOG(INFO) << " origins " << origins_.size(); - LOG(INFO) << " copy_counts " << copy_counts_.size(); - LOG(INFO) << " copy_bytes " << copy_bytes_.size(); - LOG(INFO) << " abs32_ix " << abs32_ix_.size(); - LOG(INFO) << " rel32_ix " << rel32_ix_.size(); + VLOG(1) << "EncodedProgram Summary" + << "\n image base " << image_base_ + << "\n abs32 rvas " << abs32_rva_.size() + << "\n rel32 rvas " << rel32_rva_.size() + << "\n ops " << ops_.size() + << "\n origins " << origins_.size() + << "\n copy_counts " << copy_counts_.size() + << "\n copy_bytes " << copy_bytes_.size() + << "\n abs32_ix " << abs32_ix_.size() + << "\n rel32_ix " << rel32_ix_.size(); } //////////////////////////////////////////////////////////////////////////////// -- cgit v1.1