diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-21 20:40:58 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-21 20:40:58 +0000 |
commit | 18cca2018b2159c6efdde226d1c2695aba4a62aa (patch) | |
tree | a0dd28779624db09bdfaf54d23c1ddd5b72c84c5 /courgette/encoded_program.cc | |
parent | 3cd3202a53d2fbb2944a61c9286ff74b3ea6671b (diff) | |
download | chromium_src-18cca2018b2159c6efdde226d1c2695aba4a62aa.zip chromium_src-18cca2018b2159c6efdde226d1c2695aba4a62aa.tar.gz chromium_src-18cca2018b2159c6efdde226d1c2695aba4a62aa.tar.bz2 |
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
Diffstat (limited to 'courgette/encoded_program.cc')
-rw-r--r-- | courgette/encoded_program.cc | 20 |
1 files changed, 10 insertions, 10 deletions
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(); } //////////////////////////////////////////////////////////////////////////////// |